mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
9 lines
No EOL
429 B
SQL
9 lines
No EOL
429 B
SQL
-- SCHEMA VERSION 12: <insert date> --
|
|
-- Add disabling front/latch autoproxy per-member --
|
|
-- Add disabling autoproxy per-account --
|
|
-- Add configurable latch timeout --
|
|
|
|
alter table members add column allow_autoproxy bool not null default true;
|
|
alter table accounts add column allow_autoproxy bool not null default true;
|
|
alter table systems add column latch_timeout int not null default -1;
|
|
update info set schema_version = 12; |