mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-25 13:51:19 +00:00
3 lines
244 B
MySQL
3 lines
244 B
MySQL
|
alter table federation_blocklist add column admin_person_id int REFERENCES person(id) ON UPDATE CASCADE ON DELETE CASCADE;
|
||
|
alter table federation_blocklist add column reason text;
|
||
|
alter table federation_blocklist add column expires timestamptz;
|