mirror of
https://github.com/Icinga/icingadb.git
synced 2026-06-09 08:56:54 -04:00
Merge pull request #29 from Icinga/bugfix/downtime_history-start_time-end_time
Schema: make downtime_history#{start,end}_time NOT NULL
This commit is contained in:
commit
7cb68fba76
1 changed files with 2 additions and 2 deletions
|
|
@ -858,8 +858,8 @@ CREATE TABLE downtime_history (
|
|||
flexible_duration bigint(20) unsigned NOT NULL,
|
||||
scheduled_start_time bigint(20) unsigned NOT NULL,
|
||||
scheduled_end_time bigint(20) unsigned NOT NULL,
|
||||
start_time bigint(20) unsigned DEFAULT NULL COMMENT 'Time when the host went into a problem state during the downtimes timeframe',
|
||||
end_time bigint(20) unsigned DEFAULT NULL COMMENT 'Problem state assumed: scheduled_end_time if fixed, start_time + duration otherwise',
|
||||
start_time bigint(20) unsigned NOT NULL COMMENT 'Time when the host went into a problem state during the downtimes timeframe',
|
||||
end_time bigint(20) unsigned NOT NULL COMMENT 'Problem state assumed: scheduled_end_time if fixed, start_time + duration otherwise',
|
||||
has_been_cancelled enum('y', 'n') NOT NULL,
|
||||
trigger_time bigint(20) unsigned NOT NULL,
|
||||
cancel_time bigint(20) unsigned NULL DEFAULT NULL,
|
||||
|
|
|
|||
Loading…
Reference in a new issue