schema/mysql: fix copy & paste error

This commit is contained in:
Thomas Gelf 2015-12-02 14:59:55 +01:00
parent 635befc501
commit e871c1c534
1 changed files with 1 additions and 1 deletions

View File

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