mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
9 lines
440 B
SQL
9 lines
440 B
SQL
-- Add the mod_transfer_community log table
|
|
create table mod_transfer_community (
|
|
id serial primary key,
|
|
mod_person_id int references person on update cascade on delete cascade not null,
|
|
other_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,
|
|
removed boolean default false,
|
|
when_ timestamp not null default now()
|
|
);
|