mirror of https://github.com/LemmyNet/lemmy.git
17 lines
622 B
SQL
17 lines
622 B
SQL
CREATE TABLE person_block (
|
|
id serial PRIMARY KEY,
|
|
person_id int REFERENCES person ON UPDATE CASCADE ON DELETE CASCADE NOT NULL,
|
|
target_id int REFERENCES person ON UPDATE CASCADE ON DELETE CASCADE NOT NULL,
|
|
published timestamp NOT NULL DEFAULT now(),
|
|
UNIQUE (person_id, target_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)
|
|
);
|
|
|