schema/mysql: allow for 16MB startup log
This commit is contained in:
parent
36d9db4c74
commit
379269653d
|
@ -0,0 +1 @@
|
|||
ALTER TABLE director_deployment_log MODIFY startup_log MEDIUMTEXT DEFAULT NULL;
|
|
@ -90,7 +90,7 @@ CREATE TABLE director_deployment_log (
|
|||
dump_succeeded ENUM('y', 'n') DEFAULT NULL,
|
||||
startup_succeeded ENUM('y', 'n') DEFAULT NULL,
|
||||
username VARCHAR(64) DEFAULT NULL COMMENT 'The user that triggered this deployment',
|
||||
startup_log TEXT DEFAULT NULL,
|
||||
startup_log MEDIUMTEXT DEFAULT NULL,
|
||||
PRIMARY KEY (id),
|
||||
CONSTRAINT config_checksum
|
||||
FOREIGN KEY config_checksum (config_checksum)
|
||||
|
|
Loading…
Reference in New Issue