mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-30 17:24:18 +02:00
IcingaUserField: add missing field class
This commit is contained in:
parent
b3918b9ab5
commit
4461f3c8aa
18
library/Director/Objects/IcingaUserField.php
Normal file
18
library/Director/Objects/IcingaUserField.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace Icinga\Module\Director\Objects;
|
||||
|
||||
use Icinga\Module\Director\Data\Db\DbObject;
|
||||
|
||||
class IcingaUserField extends DbObject
|
||||
{
|
||||
protected $keyName = array('user_id', 'datafield_id');
|
||||
|
||||
protected $table = 'icinga_user_field';
|
||||
|
||||
protected $defaultProperties = array(
|
||||
'user_id' => null,
|
||||
'datafield_id' => null,
|
||||
'is_required' => null
|
||||
);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user