IcingaCommandField: new object

This commit is contained in:
Thomas Gelf 2015-08-29 01:13:53 +02:00
parent b60afc5f96
commit 3c0fbe11cd
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<?php
namespace Icinga\Module\Director\Objects;
use Icinga\Module\Director\Data\Db\DbObject;
class IcingaCommandField extends DbObject
{
protected $keyName = array('command_id', 'datafield_id');
protected $table = 'icinga_command_field';
protected $defaultProperties = array(
'command_id' => null,
'datafield_id' => null,
'is_required' => null
);
}