mirror of
https://github.com/Icinga/icingadb.git
synced 2026-05-28 04:35:54 -04:00
Schema: make downtime_history#{start,end}_time NOT NULL
This commit is contained in:
parent
ad7c7f621d
commit
8f78e83fd5
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