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