schema: allow for longer stage names
Valid host names could have 64 characters, stage names are longer
This commit is contained in:
parent
f4e9ff14cf
commit
e45cb51031
|
@ -0,0 +1 @@
|
||||||
|
ALTER TABLE director_deployment_log MODIFY stage_name VARCHAR(96) DEFAULT NULL;
|
|
@ -84,7 +84,7 @@ CREATE TABLE director_deployment_log (
|
||||||
COMMENT 'The time it took to connect to an Icinga node (ms)',
|
COMMENT 'The time it took to connect to an Icinga node (ms)',
|
||||||
duration_dump INT(10) UNSIGNED DEFAULT NULL
|
duration_dump INT(10) UNSIGNED DEFAULT NULL
|
||||||
COMMENT 'Time spent dumping the config (ms)',
|
COMMENT 'Time spent dumping the config (ms)',
|
||||||
stage_name VARCHAR(64) DEFAULT NULL,
|
stage_name VARCHAR(96) DEFAULT NULL,
|
||||||
stage_collected ENUM('y', 'n') DEFAULT NULL,
|
stage_collected ENUM('y', 'n') DEFAULT NULL,
|
||||||
connection_succeeded ENUM('y', 'n') DEFAULT NULL,
|
connection_succeeded ENUM('y', 'n') DEFAULT NULL,
|
||||||
dump_succeeded ENUM('y', 'n') DEFAULT NULL,
|
dump_succeeded ENUM('y', 'n') DEFAULT NULL,
|
||||||
|
|
Loading…
Reference in New Issue