mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01:00
docs: update private schemas
This commit is contained in:
parent
96feaf3cbe
commit
8e5084cd72
1 changed files with 8 additions and 2 deletions
|
@ -339,6 +339,7 @@
|
||||||
| hashedIP | TEXT | not null |
|
| hashedIP | TEXT | not null |
|
||||||
| type | INTEGER | 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
|
| 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 |
|
| index | field |
|
||||||
| -- | :--: |
|
| -- | :--: |
|
||||||
|
@ -353,6 +354,7 @@
|
||||||
| hashedIP | TEXT | not null |
|
| hashedIP | TEXT | not null |
|
||||||
| category | TEXT | not null |
|
| category | TEXT | not null |
|
||||||
| timeSubmitted | INTEGER | not null |
|
| timeSubmitted | INTEGER | not null |
|
||||||
|
| id | SERIAL | primary key |
|
||||||
|
|
||||||
| index | field |
|
| index | field |
|
||||||
| -- | :--: |
|
| -- | :--: |
|
||||||
|
@ -366,6 +368,7 @@
|
||||||
| hashedIP | TEXT | not null |
|
| hashedIP | TEXT | not null |
|
||||||
| timeSubmitted | INTEGER | not null |
|
| timeSubmitted | INTEGER | not null |
|
||||||
| service | TEXT | not null, default 'YouTube' |
|
| service | TEXT | not null, default 'YouTube' |
|
||||||
|
| id | SERIAL | primary key |
|
||||||
|
|
||||||
| index | field |
|
| index | field |
|
||||||
| -- | :--: |
|
| -- | :--: |
|
||||||
|
@ -375,7 +378,7 @@
|
||||||
|
|
||||||
| Name | Type | |
|
| Name | Type | |
|
||||||
| -- | :--: | -- |
|
| -- | :--: | -- |
|
||||||
| key | TEXT | not null |
|
| key | TEXT | not null, primary key |
|
||||||
| value | TEXT | not null |
|
| value | TEXT | not null |
|
||||||
|
|
||||||
### ratings
|
### ratings
|
||||||
|
@ -388,6 +391,7 @@
|
||||||
| type | INTEGER | not null |
|
| type | INTEGER | not null |
|
||||||
| timeSubmitted | INTEGER | not null |
|
| timeSubmitted | INTEGER | not null |
|
||||||
| hashedIP | TEXT | not null |
|
| hashedIP | TEXT | not null |
|
||||||
|
| id | SERIAL | primary key |
|
||||||
|
|
||||||
| index | field |
|
| index | field |
|
||||||
| -- | :--: |
|
| -- | :--: |
|
||||||
|
@ -400,6 +404,7 @@
|
||||||
| targetUserID | TEXT | not null |
|
| targetUserID | TEXT | not null |
|
||||||
| enabled | BOOLEAN | not null |
|
| enabled | BOOLEAN | not null |
|
||||||
| updatedAt | INTEGER | not null |
|
| updatedAt | INTEGER | not null |
|
||||||
|
| id | SERIAL | primary key |
|
||||||
|
|
||||||
### userNameLogs
|
### userNameLogs
|
||||||
|
|
||||||
|
@ -409,4 +414,5 @@
|
||||||
| newUserName | TEXT | not null |
|
| newUserName | TEXT | not null |
|
||||||
| oldUserName | TEXT | not null |
|
| oldUserName | TEXT | not null |
|
||||||
| updatedByAdmin | BOOLEAN | not null |
|
| updatedByAdmin | BOOLEAN | not null |
|
||||||
| updatedAt | INTEGER | not null |
|
| updatedAt | INTEGER | not null |
|
||||||
|
| id | SERIAL | primary key |
|
Loading…
Reference in a new issue