2019-02-28 06:02:55 +00:00
|
|
|
create table community (
|
|
|
|
id serial primary key,
|
2019-03-23 01:42:57 +00:00
|
|
|
name varchar(20) not null unique,
|
2019-03-05 03:52:09 +00:00
|
|
|
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,
|
2019-03-05 03:52:09 +00:00
|
|
|
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,
|
2019-03-05 03:52:09 +00:00
|
|
|
published timestamp not null default now()
|
2019-03-04 16:39:07 +00:00
|
|
|
);
|
2019-03-28 19:32:08 +00:00
|
|
|
|
|
|
|
insert into community (name) values ('main');
|