IcingaCommandArgument: adjust schema column name

This commit is contained in:
Thomas Gelf 2015-08-03 13:53:58 +02:00
parent 757dc104d3
commit 9771e04ee0
1 changed files with 12 additions and 12 deletions

View File

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