2019-03-06 01:00:01 +00:00
|
|
|
create table comment (
|
|
|
|
id serial primary key,
|
|
|
|
content text not null,
|
|
|
|
attributed_to text not null,
|
|
|
|
post_id int references post on update cascade on delete cascade not null,
|
|
|
|
parent_id int references comment on update cascade on delete cascade,
|
|
|
|
published timestamp not null default now(),
|
|
|
|
updated timestamp
|
|
|
|
);
|
|
|
|
|
|
|
|
create table comment_like (
|
|
|
|
id serial primary key,
|
|
|
|
comment_id int references comment on update cascade on delete cascade not null,
|
2019-03-28 19:32:08 +00:00
|
|
|
post_id int references post on update cascade on delete cascade not null,
|
2019-03-06 01:00:01 +00:00
|
|
|
fedi_user_id text not null,
|
|
|
|
score smallint not null, -- -1, or 1 for dislike, like, no row for no opinion
|
2019-03-28 19:32:08 +00:00
|
|
|
published timestamp not null default now(),
|
|
|
|
unique(comment_id, fedi_user_id)
|
2019-03-06 01:00:01 +00:00
|
|
|
);
|