Merge branch 'frost' of https://github.com/Aevann1/Drama into frost

master
Aevann1 2022-02-14 23:01:02 +02:00
commit 0bbec48653
1 changed files with 4 additions and 2 deletions

View File

@ -345,7 +345,8 @@ CREATE TABLE public.commentvotes (
vote_type integer NOT NULL,
user_id integer NOT NULL,
app_id integer,
"real" boolean DEFAULT true NOT NULL
"real" boolean DEFAULT true NOT NULL,
created_utc integer DEFAULT 0 NOT NULL
);
@ -900,7 +901,8 @@ CREATE TABLE public.votes (
submission_id integer NOT NULL,
vote_type integer NOT NULL,
app_id integer,
"real" boolean DEFAULT true NOT NULL
"real" boolean DEFAULT true NOT NULL,
created_utc integer DEFAULT 0 NOT NULL
);