IcingaCommandField: one more implementation

This commit is contained in:
Thomas Gelf 2016-12-07 09:38:33 +01:00
parent 3e92746112
commit 949d6c9b54
1 changed files with 5 additions and 6 deletions

View File

@ -2,17 +2,16 @@
namespace Icinga\Module\Director\Objects;
use Icinga\Module\Director\Data\Db\DbObject;
class IcingaCommandField extends DbObject
class IcingaCommandField extends IcingaObjectField
{
protected $keyName = array('command_id', 'datafield_id');
protected $table = 'icinga_command_field';
protected $defaultProperties = array(
'command_id' => null,
'datafield_id' => null,
'is_required' => null
'command_id' => null,
'datafield_id' => null,
'is_required' => null,
'var_filter' => null,
);
}