mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
7 lines
No EOL
260 B
SQL
7 lines
No EOL
260 B
SQL
-- 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; |