PluralKit/PluralKit.Core/Database/Migrations/28.sql

7 lines
233 B
MySQL
Raw Normal View History

2022-03-23 18:20:16 +00:00
-- schema version 28
-- system pronouns
alter table systems add column pronouns text;
alter table systems add column pronoun_privacy integer check (pronoun_privacy in (1, 2)) not null default 1;
update info set schema_version = 28;