mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
7 lines
260 B
MySQL
7 lines
260 B
MySQL
|
|
-- database version 36
|
||
|
|
-- add system avatar privacy and system name privacy
|
||
|
|
|
||
|
|
alter table systems add column name_privacy integer not null default 1;
|
||
|
|
alter table systems add column avatar_privacy integer not null default 1;
|
||
|
|
|
||
|
|
update info set schema_version = 36;
|