/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/tests/Fixture
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/tests/Fixture/BakeTemplateAuthorsFixture.php (1857B)
*/
public $fields = [
'id' => ['type' => 'integer'],
'role_id' => ['type' => 'integer', 'null' => false],
'name' => ['type' => 'string', 'default' => null],
'description' => ['type' => 'text', 'default' => null],
'member' => ['type' => 'boolean'],
'member_number' => ['type' => 'integer', 'null' => true],
'account_balance' => ['type' => 'decimal', 'null' => true, 'precision' => 2, 'length' => 12],
'created' => 'datetime',
'modified' => 'datetime',
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['id']]],
];
/**
* records property
*
* @var array
*/
public $records = [
['name' => 'mariano', 'role_id' => 1],
['name' => 'nate', 'role_id' => 2],
['name' => 'larry', 'role_id' => 2],
['name' => 'garrett', 'role_id' => 1],
];
}