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-04-03 06:49:32 +00:00
|
|
|
creator_id int references user_ on update cascade on delete cascade not null,
|
2019-03-05 03:52:09 +00:00
|
|
|
published timestamp not null default now(),
|
|
|
|
updated timestamp
|
2019-03-04 16:39:07 +00:00
|
|
|
);
|
|
|
|
|
2019-04-03 06:49:32 +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,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id int references user_ on update cascade on delete cascade 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,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id int references user_ on update cascade on delete cascade 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
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
insert into community (name, creator_id) values ('main', 1);
|