remotes/1693045480750635534/spooky-22
parent
9c1c225ed9
commit
6ab7a7ab4f
File diff suppressed because one or more lines are too long
|
@ -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
|
||||
--
|
||||
|
|
Loading…
Reference in New Issue