remotes/1693045480750635534/spooky-22
Aevann1 2022-01-22 10:15:53 +00:00
parent 9c1c225ed9
commit 6ab7a7ab4f
2 changed files with 6 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -266,7 +266,8 @@ CREATE TABLE public.comments (
ban_reason character varying(25),
realupvotes integer,
top_comment_id integer,
is_pinned_utc integer
is_pinned_utc integer,
ghost boolean
);
@ -579,7 +580,8 @@ CREATE TABLE public.submissions (
title_html character varying(1500),
realupvotes integer,
flair character varying(350),
stickied_utc integer
stickied_utc integer,
ghost boolean
);
@ -1707,6 +1709,7 @@ ALTER TABLE ONLY public.flags
ALTER TABLE ONLY public.notifications
ADD CONSTRAINT notifications_comment_id_fkey FOREIGN KEY (comment_id) REFERENCES public.comments(id);
--
-- PostgreSQL database dump complete
--