17 lines
359 B
MySQL
17 lines
359 B
MySQL
|
--
|
||
|
-- This updates a 1.17.2 database to 1.17.3
|
||
|
--
|
||
|
-- Make changes to Filter table
|
||
|
--
|
||
|
alter table Filters drop column MonitorId;
|
||
|
alter table Filters drop index FilterIDX;
|
||
|
--
|
||
|
-- These are optional, but we might as well
|
||
|
--
|
||
|
optimize table Frames;
|
||
|
optimize table Events;
|
||
|
optimize table Filters;
|
||
|
optimize table Zones;
|
||
|
optimize table Monitors;
|
||
|
optimize table Stats;
|