lemmy/server/migrations/2019-03-03-163336_create_post/up.sql

24 lines
592 B
MySQL
Raw Normal View History

2019-03-04 16:39:07 +00:00
create table post (
id serial primary key,
name varchar(100) not null,
url text not null,
attributed_to text not null,
published timestamp not null default now(),
updated timestamp
2019-03-04 16:39:07 +00:00
);
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,
published timestamp not null default now()
2019-03-04 16:39:07 +00:00
);
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,
published timestamp not null default now()
2019-03-04 16:39:07 +00:00
);