Thomas Gelf 6377ed61cc DbObject: remove binary column magic
Binary columns must be configured explicitly, binary keys are now also
possible

fixes #1702
2018-11-14 12:24:31 +01:00

25 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'
];
}