PluralKit/crates/migrate/data/migrations/20.sql

7 lines
207 B
MySQL
Raw Permalink Normal View History

-- schema version 20: insert date
-- add outgoing webhook to systems
alter table systems add column webhook_url text;
alter table systems add column webhook_token text;
update info set schema_version = 20;