mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-26 22:31:20 +00:00
15 lines
605 B
SQL
15 lines
605 B
SQL
create table person_block (
|
|
id serial primary key,
|
|
person_id int references person on update cascade on delete cascade not null,
|
|
recipient_id int references person on update cascade on delete cascade not null,
|
|
published timestamp not null default now(),
|
|
unique(person_id, recipient_id)
|
|
);
|
|
|
|
create table community_block (
|
|
id serial primary key,
|
|
person_id int references person on update cascade on delete cascade not null,
|
|
community_id int references community on update cascade on delete cascade not null,
|
|
published timestamp not null default now(),
|
|
unique(person_id, community_id)
|
|
);
|