mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
7 lines
293 B
MySQL
7 lines
293 B
MySQL
|
|
-- schema version 25
|
||
|
|
-- group name privacy
|
||
|
|
|
||
|
|
alter table groups add column name_privacy integer check (name_privacy in (1, 2)) not null default 1;
|
||
|
|
alter table groups add column metadata_privacy integer check (metadata_privacy in (1, 2)) not null default 1;
|
||
|
|
|
||
|
|
update info set schema_version = 25;
|