/var/www/vhosts/ihelp.ro/_OLD/config/Migrations
Edit: /var/www/vhosts/ihelp.ro/_OLD/config/Migrations/20200813114509_CreateCauses.php (1945B)
table('causes');
$table->addColumn('uuid', 'string', [
'default' => null,
'limit' => 100,
'null' => false,
]);
$table->addColumn('user_id', 'integer', [
'default' => null,
'limit' => 11,
'null' => false,
]);
$table->addColumn('name', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('slug', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('description', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('donation_amount', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('date_start', 'datetime', [
'default' => null,
'null' => false,
]);
$table->addColumn('date_end', 'datetime', [
'default' => null,
'null' => false,
]);
$table->addColumn('is_active', 'boolean', [
'default' => null,
'null' => false,
]);
$table->addColumn('created', 'datetime', [
'default' => null,
'null' => false,
]);
$table->addColumn('modified', 'datetime', [
'default' => null,
'null' => false,
]);
$table->create();
}
}