11 lines
368 B
SQL
11 lines
368 B
SQL
--
|
|
-- This updates a 1.28.104 database to 1.28.105
|
|
--
|
|
|
|
--
|
|
-- Add Privacy type to Zone Types
|
|
--
|
|
|
|
alter table Zones modify Type enum('Active','Inclusive','Exclusive','Preclusive','Inactive','Privacy') NOT NULL DEFAULT 'Active';
|
|
alter table ZonePresets modify Type enum('Active','Inclusive','Exclusive','Preclusive','Inactive','Privacy') NOT NULL DEFAULT 'Active';
|