/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/tests/Fixture
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/tests/Fixture/BakeTemplateProfilesFixture.php (1747B)
*/
public $fields = [
'id' => ['type' => 'integer'],
'author_id' => ['type' => 'integer', 'null' => false],
'nick' => ['type' => 'string', 'null' => false],
'avatar' => ['type' => 'string', 'default' => null],
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]],
];
/**
* records property
*
* @var array
*/
public $records = [
['author_id' => 1, 'nick' => 'The Comedian', 'avatar' => 'smiley.png'],
['author_id' => 2, 'nick' => 'Rorschach', 'avatar' => 'stains.png'],
['author_id' => 3, 'nick' => 'Ozymandias', 'avatar' => null],
['author_id' => 4, 'nick' => 'Dr. Manhattan', 'avatar' => 'blue_lightning.png'],
];
}