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

7 lines
229 B
MySQL
Raw Permalink Normal View History

-- database version 35
-- add guild avatar and guild name to system guild settings
alter table system_guild add column avatar_url text;
alter table system_guild add column display_name text;
update info set schema_version = 35;