/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/debug_kit/tests/Fixture
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/debug_kit/tests/Fixture/PanelsFixture.php (2099B)
['type' => 'uuid'],
'request_id' => ['type' => 'uuid', 'null' => false],
'panel' => ['type' => 'string'],
'title' => ['type' => 'string'],
'element' => ['type' => 'string'],
'summary' => ['type' => 'string'],
'content' => ['type' => 'binary', 'length' => TableSchema::LENGTH_LONG],
'_constraints' => [
'primary' => ['type' => 'primary', 'columns' => ['id']],
'unique_panel' => ['type' => 'unique', 'columns' => ['request_id', 'panel']],
'request_id_fk' => [
'type' => 'foreign',
'columns' => ['request_id'],
'references' => ['requests', 'id'],
],
],
];
/**
* Records
*
* @var array
*/
public $records = [];
/**
* Constructor
*
* @param string $connection The connection name to use.
*/
public function __construct($connection = null)
{
if ($connection) {
$this->connection = $connection;
}
$this->init();
}
}