/var/www/vhosts/ihelp.ro/_OLD/config/Migrations
Edit: /var/www/vhosts/ihelp.ro/_OLD/config/Migrations/20200813114547_CreateOrders.php (2801B)
table('orders');
$table->addColumn('uuid', 'string', [
'default' => null,
'limit' => 100,
'null' => false,
]);
$table->addColumn('user_id', 'integer', [
'default' => null,
'limit' => 11,
'null' => false,
]);
$table->addColumn('order_status_id', 'integer', [
'default' => null,
'limit' => 11,
'null' => false,
]);
$table->addColumn('order_status_date', 'datetime', [
'default' => null,
'null' => false,
]);
$table->addColumn('order_status_comment', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('email', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('value', 'float', [
'default' => null,
'null' => false,
]);
$table->addColumn('supplier_total', 'float', [
'default' => null,
'null' => false,
]);
$table->addColumn('ip', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('gatewayId', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('prcId', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('email_sent', 'boolean', [
'default' => null,
'null' => false,
]);
$table->addColumn('email_reminder', 'boolean', [
'default' => null,
'null' => false,
]);
$table->addColumn('env_key', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('data', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
]);
$table->addColumn('created', 'datetime', [
'default' => null,
'null' => false,
]);
$table->addColumn('modified', 'datetime', [
'default' => null,
'null' => false,
]);
$table->create();
}
}