![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/database/migrations/ |
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOrdersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('orders', function (Blueprint $table) { $table->increments('id'); $table->string('reference')->unique(); $table->integer('courier_id')->unsigned()->index(); $table->foreign('courier_id')->references('id')->on('couriers'); $table->integer('customer_id')->unsigned()->index(); $table->foreign('customer_id')->references('id')->on('customers'); $table->integer('address_id')->unsigned()->index(); $table->foreign('address_id')->references('id')->on('addresses'); $table->integer('order_status_id')->unsigned()->index(); $table->foreign('order_status_id')->references('id')->on('order_statuses'); $table->string('payment'); $table->decimal('discounts')->default(0.00); $table->decimal('total_products'); $table->decimal('tax')->default(0.00); $table->decimal('total'); $table->decimal('total_paid')->default(0.00); $table->string('invoice')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('orders'); } }