D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
lactobokashi.com
/
database
/
migrations
/
Filename :
2023_11_05_140118_create_outlets_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; use App\Enums\Status; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('outlets', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('email')->nullable(); $table->string('country_code')->nullable(); $table->string('phone')->nullable(); $table->string('latitude')->nullable(); $table->string('longitude')->nullable(); $table->string('city'); $table->string('state'); $table->string('zip_code'); $table->text('address'); $table->unsignedTinyInteger('status')->default(Status::INACTIVE); $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. */ public function down(): void { Schema::dropIfExists('outlets'); } };