PluralKit/crates/migrate/data/migrations/51.sql
alyssa 47c5990218 chore: move migrations to rust
also adds some basic test seed data
2025-07-24 01:36:04 +00:00

7 lines
No EOL
228 B
SQL

-- database version 51
--
-- add guild setting for SUPPRESS_NOTIFICATIONS message flag on proxied messages
alter table servers add column suppress_notifications bool not null default false;
update info set schema_version = 51;