21 lines
403 B
PHP
21 lines
403 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Module\Director\Objects;
|
||
|
|
||
|
use Icinga\Module\Director\Data\Db\DbObject;
|
||
|
|
||
|
class DirectorDatalist extends DbObject
|
||
|
{
|
||
|
protected $table = 'director_datalist';
|
||
|
|
||
|
protected $keyName = 'id';
|
||
|
|
||
|
protected $autoincKeyName = 'id';
|
||
|
|
||
|
protected $defaultProperties = array(
|
||
|
'id' => null,
|
||
|
'list_name' => null,
|
||
|
'owner' => null
|
||
|
);
|
||
|
}
|