mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
23 lines
574 B
MySQL
23 lines
574 B
MySQL
|
create table post (
|
||
|
id serial primary key,
|
||
|
name varchar(100) not null,
|
||
|
url text not null,
|
||
|
attributed_to text not null,
|
||
|
start_time timestamp not null default now()
|
||
|
);
|
||
|
|
||
|
create table post_like (
|
||
|
id serial primary key,
|
||
|
fedi_user_id text not null,
|
||
|
post_id int references post on update cascade on delete cascade,
|
||
|
start_time timestamp not null default now()
|
||
|
);
|
||
|
|
||
|
create table post_dislike (
|
||
|
id serial primary key,
|
||
|
fedi_user_id text not null,
|
||
|
post_id int references post on update cascade on delete cascade,
|
||
|
start_time timestamp not null default now()
|
||
|
);
|
||
|
|