/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/tests/Fixture
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/tests/Fixture/PostsFixture.php (1576B)
['type' => 'integer'],
'author_id' => ['type' => 'integer', 'null' => false],
'title' => ['type' => 'string', 'null' => false],
'body' => 'text',
'published' => ['type' => 'string', 'length' => 1, 'default' => 'N'],
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]],
];
/**
* records property
*
* @var array
*/
public $records = [
['author_id' => 1, 'title' => 'First Post', 'body' => 'First Post Body', 'published' => 'Y'],
['author_id' => 3, 'title' => 'Second Post', 'body' => 'Second Post Body', 'published' => 'Y'],
['author_id' => 1, 'title' => 'Third Post', 'body' => 'Third Post Body', 'published' => 'Y'],
];
}