/var/www/vhosts/ihelp.ro/_OLD/config/Migrations
NameSizeModeActions
20200813114508_CreateProducts.php23850644editdlrm
20200813114509_CreateCauses.php19450644editdlrm
20200813114517_CreateCategories.php8730644editdlrm
20200813114518_CreateProductTags.php11080644editdlrm
20200813114528_CreateProfiles.php18280644editdlrm
20200813114537_CreateMessages.php14260644editdlrm
20200813114538_CreateRoles.php7160644editdlrm
20200813114547_CreateOrders.php28010644editdlrm
20200813114548_CreateTags.php7130644editdlrm
20200813114557_CreateOrderStatuses.php7320644editdlrm
20200813114567_CreatePaymentLogs.php11260644editdlrm
20200813114568_CreateUsers.php15120644editdlrm
20200813114577_CreateProductCategories.php7520644editdlrm
20200813114578_CreateCauseImages.php9800644editdlrm
20200813114587_CreateProductFavorites.php9950644editdlrm
20200813114597_CreateProductImages.php9880644editdlrm
schema-dump-default.lock304290644editdlrm
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(); } }