PluralKit/PluralKit.Core/Database/Migrations/37.sql
2023-08-10 18:30:21 +12:00

7 lines
No EOL
264 B
SQL

-- database version 37
-- add proxy tag privacy
alter table members add column proxy_privacy integer not null default 1;
alter table members add constraint members_proxy_privacy_check check (proxy_privacy = ANY (ARRAY[1,2]));
update info set schema_version = 37;