2020-12-08 11:57:17 +00:00
|
|
|
|
-- SCHEMA VERSION 12: 2020-12-08 --
|
2020-11-20 21:40:36 +00:00
|
|
|
|
-- Add disabling front/latch autoproxy per-member --
|
2020-11-20 23:34:08 +00:00
|
|
|
|
-- Add disabling autoproxy per-account --
|
2020-11-21 00:44:15 +00:00
|
|
|
|
-- Add configurable latch timeout --
|
2020-11-20 21:40:36 +00:00
|
|
|
|
|
|
|
|
|
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;
|
2020-12-08 11:57:17 +00:00
|
|
|
|
alter table systems add column latch_timeout int; -- in seconds
|
|
|
|
|
|
2020-11-20 21:40:36 +00:00
|
|
|
|
update info set schema_version = 12;
|