Host/Service: Commandline should not be restricted to 255 chars

This commit is contained in:
Noah Hilverling 2019-07-31 15:45:26 +02:00
parent ab0e4b7344
commit 8b6e8b5c9d
2 changed files with 2 additions and 2 deletions

View file

@ -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,

View file

@ -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,