From 8e5084cd72d54f486959baaf8431b706a5be7b15 Mon Sep 17 00:00:00 2001 From: Tristan Date: Fri, 21 Jun 2024 03:11:28 +0200 Subject: [PATCH] docs: update private schemas --- DatabaseSchema.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/DatabaseSchema.md b/DatabaseSchema.md index 4b5f872..6e3f4f7 100644 --- a/DatabaseSchema.md +++ b/DatabaseSchema.md @@ -339,6 +339,7 @@ | hashedIP | TEXT | not null | | type | INTEGER | not null | | originalVoteType | INTEGER | not null | # Since type was reused to also specify the number of votes removed when less than 0, this is being used for the actual type +| id | SERIAL | primary key | | index | field | | -- | :--: | @@ -353,6 +354,7 @@ | hashedIP | TEXT | not null | | category | TEXT | not null | | timeSubmitted | INTEGER | not null | +| id | SERIAL | primary key | | index | field | | -- | :--: | @@ -366,6 +368,7 @@ | hashedIP | TEXT | not null | | timeSubmitted | INTEGER | not null | | service | TEXT | not null, default 'YouTube' | +| id | SERIAL | primary key | | index | field | | -- | :--: | @@ -375,7 +378,7 @@ | Name | Type | | | -- | :--: | -- | -| key | TEXT | not null | +| key | TEXT | not null, primary key | | value | TEXT | not null | ### ratings @@ -388,6 +391,7 @@ | type | INTEGER | not null | | timeSubmitted | INTEGER | not null | | hashedIP | TEXT | not null | +| id | SERIAL | primary key | | index | field | | -- | :--: | @@ -400,6 +404,7 @@ | targetUserID | TEXT | not null | | enabled | BOOLEAN | not null | | updatedAt | INTEGER | not null | +| id | SERIAL | primary key | ### userNameLogs @@ -409,4 +414,5 @@ | newUserName | TEXT | not null | | oldUserName | TEXT | not null | | updatedByAdmin | BOOLEAN | not null | -| updatedAt | INTEGER | not null | \ No newline at end of file +| updatedAt | INTEGER | not null | +| id | SERIAL | primary key | \ No newline at end of file