2019-03-04 16:39:07 +00:00
|
|
|
create table post (
|
|
|
|
id serial primary key,
|
|
|
|
name varchar(100) not null,
|
2019-03-26 18:00:18 +00:00
|
|
|
url text, -- These are both optional, a post can just have a title
|
|
|
|
body text,
|
2019-03-04 16:39:07 +00:00
|
|
|
attributed_to text not null,
|
2019-03-26 18:00:18 +00:00
|
|
|
community_id int references community on update cascade on delete cascade not null,
|
2019-03-05 03:52:09 +00:00
|
|
|
published timestamp not null default now(),
|
|
|
|
updated timestamp
|
2019-03-04 16:39:07 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
create table post_like (
|
|
|
|
id serial primary key,
|
2019-03-06 01:00:01 +00:00
|
|
|
post_id int references post on update cascade on delete cascade not null,
|
2019-03-04 16:39:07 +00:00
|
|
|
fedi_user_id text not null,
|
2019-03-06 01:00:01 +00:00
|
|
|
score smallint not null, -- -1, or 1 for dislike, like, no row for no opinion
|
2019-03-05 03:52:09 +00:00
|
|
|
published timestamp not null default now()
|
2019-03-04 16:39:07 +00:00
|
|
|
);
|