schema
This commit is contained in:
parent
9fed513b1e
commit
679e40fd24
2 changed files with 16 additions and 2 deletions
|
@ -266,7 +266,8 @@ CREATE TABLE public.comments (
|
|||
body_html character varying(40000),
|
||||
ban_reason character varying(25),
|
||||
notifiedto integer,
|
||||
realupvotes integer
|
||||
realupvotes integer,
|
||||
top_comment_id integer
|
||||
);
|
||||
|
||||
|
||||
|
@ -1710,6 +1711,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…
Add table
Add a link
Reference in a new issue