/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/tests/Fixture
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/tests/Fixture/TodoTasksFixture.php (1586B)
*/
public $fields = [
'uid' => ['type' => 'integer'],
'todo_item_id' => ['type' => 'integer', 'null' => false],
'title' => ['type' => 'string', 'length' => 50, 'null' => false],
'body' => 'text',
'completed' => ['type' => 'boolean', 'default' => false, 'null' => false],
'effort' => ['type' => 'decimal', 'default' => 0.0, 'null' => false, 'unsigned' => true],
'created' => 'datetime',
'updated' => 'datetime',
'_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['uid']]],
];
/**
* records property
*
* @var array
*/
public $records = [];
}