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-01-04-034553_add_hidde.../up.sql

14 lines
398 B
SQL

alter table community add column hidden boolean default false;
create table mod_hide_community
(
id serial primary key,
community_id int references community on update cascade on delete cascade not null,
mod_person_id int references person on update cascade on delete cascade not null,
when_ timestamp not null default now(),
reason text,
hidden boolean default false
);