D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
mikyal.online
/
database
/
migrations
/
Filename :
2023_10_04_154954_create_order_areas_table.php
back
Copy
<?php use App\Enums\Status; use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('order_areas', function (Blueprint $table) { $table->id(); $table->string('country'); $table->string('state')->nullable(); $table->string('city')->nullable(); $table->string('shipping_cost'); $table->tinyInteger('status')->default(Status::ACTIVE); $table->string('creator_type')->nullable(); $table->bigInteger('creator_id')->nullable(); $table->string('editor_type')->nullable(); $table->bigInteger('editor_id')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('order_areas'); } };