/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/tests/Fixture
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/tests/Fixture/UniqueAuthorsFixture.php (1412B)
['type' => 'integer'],
'first_author_id' => ['type' => 'integer', 'null' => true],
'second_author_id' => ['type' => 'integer', 'null' => false],
'_constraints' => [
'primary' => ['type' => 'primary', 'columns' => ['id']],
'nullable_non_nullable_unique' => ['type' => 'unique', 'columns' => ['first_author_id', 'second_author_id']],
],
];
/**
* records property
*
* @var array
*/
public $records = [
['first_author_id' => null, 'second_author_id' => 1],
];
}