/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/tests/Fixture
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/bake/tests/Fixture/TodoItemsTodoLabelsFixture.php (1863B)
*/
public $fields = [
'todo_item_id' => ['type' => 'integer', 'null' => false],
'todo_label_id' => ['type' => 'integer', 'null' => false],
'_constraints' => [
'primary' => ['type' => 'primary', 'columns' => ['todo_item_id', 'todo_label_id']],
'item_fk' => [
'type' => 'foreign',
'columns' => ['todo_item_id'],
'references' => ['todo_items', 'id'],
'update' => 'cascade',
'delete' => 'cascade',
],
'label_fk' => [
'type' => 'foreign',
'columns' => ['todo_label_id'],
'references' => ['todo_labels', 'id'],
'update' => 'cascade',
'delete' => 'cascade',
],
],
];
/**
* records property
*
* @var array
*/
public $records = [];
}