/var/www/vhosts/ihelp.ro/_OLD/config/Migrations
Edit: /var/www/vhosts/ihelp.ro/_OLD/config/Migrations/20200813114528_CreateProfiles.php (1828B)
table('profiles');
$table->addColumn('user_id', 'integer', [
'default' => null,
'limit' => 11,
'null' => false,
]);
$table->addColumn('first_name', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('last_name', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('image', 'string', [
'default' => null,
'limit' => 255,
'null' => true,
]);
$table->addColumn('address', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('phone', 'integer', [
'default' => null,
'limit' => 11,
'null' => false,
]);
$table->addColumn('contact_phone', 'boolean', [
'default' => null,
'null' => false,
]);
$table->addColumn('contact_email', 'boolean', [
'default' => null,
'null' => false,
]);
$table->addColumn('created', 'datetime', [
'default' => null,
'null' => false,
]);
$table->addColumn('modified', 'datetime', [
'default' => null,
'null' => false,
]);
$table->create();
}
}