You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/migrations/2022-09-07-114618_pm-reports/up.sql

14 lines
677 B
SQL

CREATE TABLE private_message_report (
id serial PRIMARY KEY,
creator_id int REFERENCES person ON UPDATE CASCADE ON DELETE CASCADE NOT NULL, -- user reporting comment
private_message_id int REFERENCES private_message ON UPDATE CASCADE ON DELETE CASCADE NOT NULL, -- comment being reported
original_pm_text text NOT NULL,
reason text NOT NULL,
resolved bool NOT NULL DEFAULT FALSE,
resolver_id int REFERENCES person ON UPDATE CASCADE ON DELETE CASCADE, -- user resolving report
published timestamp NOT NULL DEFAULT now(),
updated timestamp NULL,
UNIQUE (private_message_id, creator_id) -- users should only be able to report a pm once
);