mirror of
https://github.com/Icinga/icingadb.git
synced 2026-05-28 04:35:54 -04:00
Host/Service: Commandline should not be restricted to 255 chars
This commit is contained in:
parent
ab0e4b7344
commit
8b6e8b5c9d
2 changed files with 2 additions and 2 deletions
|
|
@ -120,7 +120,7 @@ CREATE TABLE host_state (
|
|||
output text DEFAULT NULL,
|
||||
long_output text DEFAULT NULL,
|
||||
performance_data text DEFAULT NULL,
|
||||
check_commandline varchar(255) DEFAULT NULL,
|
||||
check_commandline text DEFAULT NULL,
|
||||
|
||||
is_problem enum('y', 'n') NOT NULL,
|
||||
is_handled enum('y', 'n') NOT NULL,
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ CREATE TABLE service_state (
|
|||
output text DEFAULT NULL,
|
||||
long_output text DEFAULT NULL,
|
||||
performance_data text DEFAULT NULL,
|
||||
check_commandline varchar(255) DEFAULT NULL,
|
||||
check_commandline text DEFAULT NULL,
|
||||
|
||||
is_problem enum('y', 'n') NOT NULL,
|
||||
is_handled enum('y', 'n') NOT NULL,
|
||||
|
|
|
|||
Loading…
Reference in a new issue