/var/www/vhosts/ihelp.ro/_OLD/config/Migrations
Edit: /var/www/vhosts/ihelp.ro/_OLD/config/Migrations/20200813114578_CreateCauseImages.php (980B)
table('cause_images');
$table->addColumn('cause_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('modidfied', 'datetime', [
'default' => null,
'null' => false,
]);
$table->create();
}
}