2019-03-04 11:39:07 -05:00
|
|
|
create table post (
|
|
|
|
id serial primary key,
|
|
|
|
name varchar(100) not null,
|
2019-03-26 14:00:18 -04:00
|
|
|
url text, -- These are both optional, a post can just have a title
|
|
|
|
body text,
|
2019-04-03 02:49:32 -04:00
|
|
|
creator_id int references user_ on update cascade on delete cascade not null,
|
2019-03-26 14:00:18 -04:00
|
|
|
community_id int references community on update cascade on delete cascade not null,
|
2019-04-20 00:06:25 -04:00
|
|
|
removed boolean default false not null,
|
|
|
|
locked boolean default false not null,
|
2019-03-04 22:52:09 -05:00
|
|
|
published timestamp not null default now(),
|
|
|
|
updated timestamp
|
2019-03-04 11:39:07 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
create table post_like (
|
|
|
|
id serial primary key,
|
2019-03-05 20:00:01 -05:00
|
|
|
post_id int references post on update cascade on delete cascade not null,
|
2019-04-03 02:49:32 -04:00
|
|
|
user_id int references user_ on update cascade on delete cascade not null,
|
2019-03-05 20:00:01 -05:00
|
|
|
score smallint not null, -- -1, or 1 for dislike, like, no row for no opinion
|
2019-03-30 20:08:07 -04:00
|
|
|
published timestamp not null default now(),
|
2019-04-03 02:49:32 -04:00
|
|
|
unique(post_id, user_id)
|
2019-03-04 11:39:07 -05:00
|
|
|
);
|
2019-03-30 20:08:07 -04:00
|
|
|
|
2019-04-20 00:06:25 -04:00
|
|
|
create table post_saved (
|
|
|
|
id serial primary key,
|
|
|
|
post_id int references post on update cascade on delete cascade not null,
|
|
|
|
user_id int references user_ on update cascade on delete cascade not null,
|
|
|
|
published timestamp not null default now(),
|
|
|
|
unique(post_id, user_id)
|
|
|
|
);
|
|
|
|
|
|
|
|
create table post_read (
|
|
|
|
id serial primary key,
|
|
|
|
post_id int references post on update cascade on delete cascade not null,
|
|
|
|
user_id int references user_ on update cascade on delete cascade not null,
|
|
|
|
published timestamp not null default now(),
|
|
|
|
unique(post_id, user_id)
|
|
|
|
);
|