mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
7 lines
No EOL
297 B
SQL
7 lines
No EOL
297 B
SQL
-- schema version 22
|
|
-- automatically set members/groups as private when creating
|
|
|
|
alter table system_config add column member_default_private bool not null default false;
|
|
alter table system_config add column group_default_private bool not null default false;
|
|
|
|
update info set schema_version = 22; |