Edit File: 2021_12_28_093627_create_order_steps_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateOrderStepsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('order_steps', function (Blueprint $table) { $table->id(); $table->string('image')->nullable(); $table->string('title_ar')->nullable(); $table->string('title_en')->nullable(); $table->string('desc_ar')->nullable(); $table->string('desc_en')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('order_steps'); } }
Back to File Manager