2019-02-28 01:02:55 -05:00
|
|
|
create table community (
|
|
|
|
id serial primary key,
|
2019-03-22 21:42:57 -04:00
|
|
|
name varchar(20) not null unique,
|
2019-04-03 02:49:32 -04:00
|
|
|
creator_id int references user_ on update cascade on delete cascade 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
|
|
|
);
|
|
|
|
|
2019-04-03 02:49:32 -04:00
|
|
|
create table community_moderator (
|
2019-03-04 11:39:07 -05:00
|
|
|
id serial primary key,
|
|
|
|
community_id int references community on update cascade on delete cascade not null,
|
2019-04-03 02:49:32 -04:00
|
|
|
user_id int references user_ on update cascade on delete cascade 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,
|
2019-04-03 02:49:32 -04:00
|
|
|
user_id int references user_ on update cascade on delete cascade not null,
|
2019-03-04 22:52:09 -05:00
|
|
|
published timestamp not null default now()
|
2019-03-04 11:39:07 -05:00
|
|
|
);
|
2019-03-28 15:32:08 -04:00
|
|
|
|
2019-04-03 02:49:32 -04:00
|
|
|
insert into community (name, creator_id) values ('main', 1);
|