pull/195/head
SneedBot 2023-08-14 12:27:33 +00:00
parent 70047a3004
commit 5d92d1e428
1 changed files with 10 additions and 4 deletions

View File

@ -448,8 +448,11 @@ CREATE TABLE public.comments (
chuddedfor character varying(50),
stickied_child_id integer,
wall_user_id integer,
chudded boolean,
ping_cost integer NOT NULL
chudded boolean NOT NULL,
ping_cost integer NOT NULL,
rainbowed boolean NOT NULL,
queened boolean NOT NULL,
sharpened boolean NOT NULL
);
@ -843,9 +846,12 @@ CREATE TABLE public.posts (
notify boolean NOT NULL,
chuddedfor character varying(50),
posterurl character varying(200),
chudded boolean,
chudded boolean NOT NULL,
ping_cost integer NOT NULL,
bump_utc integer NOT NULL
bump_utc integer NOT NULL,
rainbowed boolean NOT NULL,
queened boolean NOT NULL,
sharpened boolean NOT NULL
);