/var/www/vhosts/ihelp.ro/_OLD/config/Migrations
Edit: /var/www/vhosts/ihelp.ro/_OLD/config/Migrations/20200813114597_CreateProductImages.php (988B)
table('product_images');
$table->addColumn('product_id', 'integer', [
'default' => null,
'limit' => 11,
'null' => false,
]);
$table->addColumn('image', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('created', 'datetime', [
'default' => null,
'null' => false,
]);
$table->addColumn('modified', 'datetime', [
'default' => null,
'null' => false,
]);
$table->create();
}
}