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