mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-05-28 04:35:53 -04:00
Binary columns must be configured explicitly, binary keys are now also possible fixes #1702
24 lines
460 B
PHP
24 lines
460 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\DirectorObject\Automation;
|
|
|
|
use Icinga\Module\Director\Data\Db\DbObject;
|
|
|
|
class BasketContent extends DbObject
|
|
{
|
|
protected $objects;
|
|
|
|
protected $table = 'director_basket_content';
|
|
|
|
protected $keyName = 'checksum';
|
|
|
|
protected $defaultProperties = [
|
|
'checksum' => null,
|
|
'summary' => null,
|
|
'content' => null,
|
|
];
|
|
|
|
protected $binaryProperties = [
|
|
'checksum'
|
|
];
|
|
}
|