lemmy/server/migrations/2019-02-27-170003_create_community/up.sql

24 lines
840 B
MySQL
Raw Normal View History

create table community (
id serial primary key,
name varchar(20) not null unique,
creator_id int references user_ on update cascade on delete cascade not null,
published timestamp not null default now(),
updated timestamp
2019-03-04 16:39:07 +00:00
);
create table community_moderator (
2019-03-04 16:39:07 +00:00
id serial primary key,
community_id int references community on update cascade on delete cascade not null,
user_id int references user_ on update cascade on delete cascade not null,
published timestamp not null default now()
2019-03-04 16:39:07 +00:00
);
create table community_follower (
id serial primary key,
community_id int references community on update cascade on delete cascade not null,
user_id int references user_ on update cascade on delete cascade not null,
published timestamp not null default now()
2019-03-04 16:39:07 +00:00
);
insert into community (name, creator_id) values ('main', 1);