summaryrefslogtreecommitdiffstats
path: root/schema/pgsql-migrations/upgrade_146.sql
blob: ce92a31497368cff16c739f2b4184c4e14ed942a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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());