15 lines
456 B
SQL
15 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());
|