2019-02-28 01:02:55 -05:00
|
|
|
create table community (
|
|
|
|
id serial primary key,
|
|
|
|
name varchar(20) not null,
|
2019-03-04 22:52:09 -05:00
|
|
|
published timestamp not null default now(),
|
|
|
|
updated timestamp
|
2019-03-04 11:39:07 -05: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-04 22:52:09 -05:00
|
|
|
published timestamp not null default now()
|
2019-03-04 11:39:07 -05: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-04 22:52:09 -05:00
|
|
|
published timestamp not null default now()
|
2019-03-04 11:39:07 -05:00
|
|
|
);
|