PluralKit/PluralKit.Core/Database/Migrations/12.sql

7 lines
322 B
MySQL
Raw Normal View History

-- SCHEMA VERSION 12: <insert date> --
-- Add disabling front/latch autoproxy per-member --
2020-11-20 23:34:08 +00:00
-- Add disabling autoproxy per-account --
alter table members add column allow_autoproxy bool not null default true;
2020-11-20 23:34:08 +00:00
alter table accounts add column allow_autoproxy bool not null default true;
update info set schema_version = 12;