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

21 lines
592 B
MySQL
Raw Normal View History

create table community (
id serial primary key,
name varchar(20) not null,
published timestamp not null default now(),
updated timestamp
2019-03-04 16:39:07 +00:00
);
create table community_user (
id serial primary key,
community_id int references community on update cascade on delete cascade not null,
fedi_user_id text 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,
fedi_user_id text not null,
published timestamp not null default now()
2019-03-04 16:39:07 +00:00
);