IcingaCommandArgument: adjust schema column name

This commit is contained in:
Thomas Gelf 2015-08-03 13:53:58 +02:00
parent 757dc104d3
commit 9771e04ee0

View File

@ -9,18 +9,18 @@ class IcingaCommandArgument extends IcingaObject
protected $table = 'icinga_command_argument'; protected $table = 'icinga_command_argument';
protected $defaultProperties = array( protected $defaultProperties = array(
'id' => null, 'id' => null,
'command_id' => null, 'command_id' => null,
'argument_name' => null, 'argument_name' => null,
'argument_value' => null, 'argument_value' => null,
'key_string' => null, 'argument_format' => null,
'description' => null, 'key_string' => null,
'skip_key' => null, 'description' => null,
'set_if' => null, 'skip_key' => null,
'sort_order' => null, 'set_if' => null,
'repeat_key' => null, 'sort_order' => null,
'value_format' => null, 'repeat_key' => null,
'set_if_format' => null, 'set_if_format' => null,
); );
public function onInsert() public function onInsert()