mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
7 lines
No EOL
306 B
SQL
7 lines
No EOL
306 B
SQL
-- database version 39
|
|
-- add missing privacy constraints
|
|
|
|
alter table systems add constraint systems_name_privacy_check check (name_privacy = ANY (ARRAY[1,2]));
|
|
alter table systems add constraint systems_avatar_privacy_check check (avatar_privacy = ANY (ARRAY[1,2]));
|
|
|
|
update info set schema_version = 39; |