mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
ba5c93c8da
- Adding main forum page. Fixes #11 - Adding view version for posts. #21 - Got rid of fedi user ids. Fixes #22 - Post sorting working. Fixes #24
19 lines
818 B
SQL
19 lines
818 B
SQL
create table comment (
|
|
id serial primary key,
|
|
creator_id int references user_ on update cascade on delete cascade 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,
|
|
content text not null,
|
|
published timestamp not null default now(),
|
|
updated timestamp
|
|
);
|
|
|
|
create table comment_like (
|
|
id serial primary key,
|
|
user_id int references user_ on update cascade on delete cascade not null,
|
|
comment_id int references comment on update cascade on delete cascade not null,
|
|
post_id int references post on update cascade on delete cascade not null,
|
|
score smallint not null, -- -1, or 1 for dislike, like, no row for no opinion
|
|
published timestamp not null default now(),
|
|
unique(comment_id, user_id)
|
|
);
|