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

3 lines
No EOL
244 B
SQL

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;