icingaweb2-module-director/schema/pgsql-migrations/upgrade_146.sql
Markus Frosch 4902f694c1 flapping: Migrate to Icinga 2.8.0 flapping properties
Existing property is dropped now, it never was used in director before.

refs #330
2018-01-15 10:10:33 +01:00

14 lines
456 B
SQL

ALTER TABLE icinga_host
DROP COLUMN flapping_threshold,
ADD COLUMN flapping_threshold_high smallint DEFAULT NULL,
ADD COLUMN flapping_threshold_low smallint DEFAULT NULL;
ALTER TABLE icinga_service
DROP COLUMN flapping_threshold,
ADD COLUMN flapping_threshold_high smallint DEFAULT NULL,
ADD COLUMN flapping_threshold_low smallint DEFAULT NULL;
INSERT INTO director_schema_migration
(schema_version, migration_time)
VALUES (146, NOW());