/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/tests/Fixture
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/tests/Fixture/OrdersFixture.php (1840B)
['type' => 'integer'],
'product_category' => ['type' => 'integer', 'null' => false],
'product_id' => ['type' => 'integer', 'null' => false],
'_indexes' => [
'product_category' => [
'type' => 'index',
'columns' => ['product_category', 'product_id'],
],
],
'_constraints' => [
'primary' => [
'type' => 'primary', 'columns' => ['id'],
],
'product_category_fk' => [
'type' => 'foreign',
'columns' => ['product_category', 'product_id'],
'references' => ['products', ['category', 'id']],
'update' => 'cascade',
'delete' => 'cascade',
],
],
];
/**
* records property
*
* @var array
*/
public $records = [
['product_category' => 1, 'product_id' => 1],
];
}