From e871c1c53475d5da8c911794e721cb2cf2aca1b1 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Wed, 2 Dec 2015 14:59:55 +0100 Subject: [PATCH] schema/mysql: fix copy & paste error --- schema/mysql.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/mysql.sql b/schema/mysql.sql index 096c6ae5..282e0eb0 100644 --- a/schema/mysql.sql +++ b/schema/mysql.sql @@ -268,7 +268,7 @@ CREATE TABLE icinga_command_inheritance ( CREATE TABLE icinga_command_argument ( id INT(10) UNSIGNED AUTO_INCREMENT NOT NULL, command_id INT(10) UNSIGNED NOT NULL, - argument_name VARCHAR(64) COLLATE utf8_bin DEFAULT NULL COMMENT '-x, --host'; + argument_name VARCHAR(64) COLLATE utf8_bin DEFAULT NULL COMMENT '-x, --host', argument_value TEXT DEFAULT NULL, argument_format ENUM('string', 'expression', 'json') NULL DEFAULT NULL, key_string VARCHAR(64) DEFAULT NULL COMMENT 'Overrides name',