icingaweb2-module-director/library/Director/Objects/DirectorDeploymentLog.php

34 lines
988 B
PHP
Raw Normal View History

2015-08-29 01:07:26 +02:00
<?php
namespace Icinga\Module\Director\Objects;
use Icinga\Module\Director\Data\Db\DbObject;
class DirectorDeploymentLog extends DbObject
{
protected $table = 'director_deployment_log';
protected $keyName = 'id';
protected $autoincKeyName = 'id';
protected $defaultProperties = array(
2016-02-27 21:29:20 +01:00
'id' => null,
'config_checksum' => null,
'last_activity_checksum' => null,
'peer_identity' => null,
'start_time' => null,
'end_time' => null,
'abort_time' => null,
'duration_connection' => null,
'duration_dump' => null,
'stage_name' => null,
'stage_collected' => null,
'connection_succeeded' => null,
'dump_succeeded' => null,
'startup_succeeded' => null,
'username' => null,
'startup_log' => null,
2015-08-29 01:07:26 +02:00
);
}