remotes/1693045480750635534/spooky-22
Aevann1 2022-02-16 01:00:02 +00:00
parent b9f50d42f6
commit 850b97792c
1 changed files with 8 additions and 4 deletions

View File

@ -210,7 +210,8 @@ CREATE TABLE public.commentflags (
id integer NOT NULL,
user_id integer NOT NULL,
comment_id integer NOT NULL,
reason character varying(350)
reason character varying(350),
created_utc integer NOT NULL
);
@ -335,7 +336,8 @@ CREATE TABLE public.flags (
id integer NOT NULL,
user_id integer NOT NULL,
post_id integer NOT NULL,
reason character varying(350)
reason character varying(350),
created_utc integer NOT NULL
);
@ -366,7 +368,8 @@ ALTER SEQUENCE public.flags_id_seq OWNED BY public.flags.id;
CREATE TABLE public.follows (
id integer NOT NULL,
user_id integer NOT NULL,
target_id integer NOT NULL
target_id integer NOT NULL,
created_utc integer NOT NULL
);
@ -457,7 +460,8 @@ CREATE TABLE public.notifications (
id integer NOT NULL,
user_id integer NOT NULL,
comment_id integer NOT NULL,
read boolean NOT NULL
read boolean NOT NULL,
created_utc integer NOT NULL
);