mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-01 15:40:16 +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
21 lines
753 B
SQL
21 lines
753 B
SQL
create table post (
|
|
id serial primary key,
|
|
name varchar(100) not null,
|
|
url text, -- These are both optional, a post can just have a title
|
|
body text,
|
|
creator_id int references user_ on update cascade on delete cascade not null,
|
|
community_id int references community on update cascade on delete cascade not null,
|
|
published timestamp not null default now(),
|
|
updated timestamp
|
|
);
|
|
|
|
create table post_like (
|
|
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,
|
|
score smallint not null, -- -1, or 1 for dislike, like, no row for no opinion
|
|
published timestamp not null default now(),
|
|
unique(post_id, user_id)
|
|
);
|
|
|