1
0
Fork 0
mirror of https://github.com/LemmyNet/lemmy.git synced 2025-01-24 14:48:21 +00:00
lemmy/migrations/2021-10-01-141650_create_admin_purge/up.sql

32 lines
1 KiB
MySQL
Raw Normal View History

-- Add the admin_purge tables
CREATE TABLE admin_purge_person (
id serial PRIMARY KEY,
admin_person_id int REFERENCES person ON UPDATE CASCADE ON DELETE CASCADE NOT NULL,
reason text,
when_ timestamp NOT NULL DEFAULT now()
);
CREATE TABLE admin_purge_community (
id serial PRIMARY KEY,
admin_person_id int REFERENCES person ON UPDATE CASCADE ON DELETE CASCADE NOT NULL,
reason text,
when_ timestamp NOT NULL DEFAULT now()
);
CREATE TABLE admin_purge_post (
id serial PRIMARY KEY,
admin_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,
reason text,
when_ timestamp NOT NULL DEFAULT now()
);
CREATE TABLE admin_purge_comment (
id serial PRIMARY KEY,
admin_person_id int REFERENCES person ON UPDATE CASCADE ON DELETE CASCADE NOT NULL,
post_id int REFERENCES post ON UPDATE CASCADE ON DELETE CASCADE NOT NULL,
reason text,
when_ timestamp NOT NULL DEFAULT now()
);