/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/tests/Fixture
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/tests/Fixture/ProfilesFixture.php (1778B)
['type' => 'integer', 'null' => false, 'autoIncrement' => true],
'user_id' => ['type' => 'integer', 'null' => false],
'first_name' => ['type' => 'string', 'null' => true],
'last_name' => ['type' => 'string', 'null' => true],
'is_active' => ['type' => 'boolean', 'null' => false, 'default' => true],
'_constraints' => [
'primary' => ['type' => 'primary', 'columns' => ['id']],
],
];
/**
* records property
*
* @var array
*/
public $records = [
['user_id' => 1, 'first_name' => 'mariano', 'last_name' => 'iglesias', 'is_active' => false],
['user_id' => 2, 'first_name' => 'nate', 'last_name' => 'abele', 'is_active' => false],
['user_id' => 3, 'first_name' => 'larry', 'last_name' => 'masters', 'is_active' => true],
['user_id' => 4, 'first_name' => 'garrett', 'last_name' => 'woodworth', 'is_active' => false],
];
}