/var/www/vhosts/ihelp.ro/_OLD/config/Migrations
Edit: /var/www/vhosts/ihelp.ro/_OLD/config/Migrations/20200813114587_CreateProductFavorites.php (995B)
table('product_favorites');
$table->addColumn('user_id', 'integer', [
'default' => null,
'limit' => 11,
'null' => false,
]);
$table->addColumn('product_id', 'integer', [
'default' => null,
'limit' => 11,
'null' => false,
]);
$table->addColumn('created', 'datetime', [
'default' => null,
'null' => false,
]);
$table->addColumn('modified', 'datetime', [
'default' => null,
'null' => false,
]);
$table->create();
}
}