lemmy/migrations/2024-11-19-142005_instance-block-mod-log/up.sql

3 lines
244 B
MySQL
Raw Normal View History

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;