remotes/1693045480750635534/spooky-22
Aevann1 2022-02-14 21:00:02 +00:00
parent 24ed0c5a3c
commit 82e3460188
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
);