/var/www/vhosts/ihelp.ro/_OLD/config/Migrations
Edit: /var/www/vhosts/ihelp.ro/_OLD/config/Migrations/20200813114568_CreateUsers.php (1512B)
table('users');
$table->addColumn('uuid', 'string', [
'default' => null,
'limit' => 100,
'null' => false,
]);
$table->addColumn('role_id', 'integer', [
'default' => null,
'limit' => 11,
'null' => false,
]);
$table->addColumn('email', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('password', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('accept_gdpr', 'boolean', [
'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();
}
}