high_flap_threshold double default '0',
process_performance_data smallint default 0,
freshness_checks_enabled smallint default 0,
- freshness_threshold smallint default 0,
+ freshness_threshold int default 0,
passive_checks_enabled smallint default 0,
event_handler_enabled smallint default 0,
active_checks_enabled smallint default 0,
high_flap_threshold double default '0',
process_performance_data smallint default 0,
freshness_checks_enabled smallint default 0,
- freshness_threshold smallint default 0,
+ freshness_threshold int default 0,
passive_checks_enabled smallint default 0,
event_handler_enabled smallint default 0,
active_checks_enabled smallint default 0,
-- Please check http://docs.icinga.org for upgrading information!
-- -----------------------------------------
+-- -----------------------------------------
+-- #9286 - zone tables
+-- -----------------------------------------
ALTER TABLE icinga_endpoints ADD COLUMN zone_object_id bigint(20) unsigned DEFAULT '0';
ALTER TABLE icinga_endpointstatus ADD COLUMN zone_object_id bigint(20) unsigned DEFAULT '0';
) ENGINE=InnoDB COMMENT='Zone status';
+-- -----------------------------------------
+-- #9576 - freshness_threshold
+-- -----------------------------------------
+
+ALTER TABLE icinga_services MODIFY freshness_threshold int;
+ALTER TABLE icinga_hosts MODIFY freshness_threshold int;
+
-- -----------------------------------------
-- update dbversion
-- -----------------------------------------