/var/www/vhosts/ihelp.ro/_OLD/config/Migrations
Edit: /var/www/vhosts/ihelp.ro/_OLD/config/Migrations/20200813114537_CreateMessages.php (1426B)
table('messages');
$table->addColumn('user_id', 'integer', [
'default' => null,
'limit' => 11,
'null' => false,
]);
$table->addColumn('subject', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('description', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('to', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('from', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('is_active', 'boolean', [
'default' => null,
'null' => false,
]);
$table->addColumn('created', 'datetime', [
'default' => null,
'null' => false,
]);
$table->create();
}
}