D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
mikyal.online
/
database
/
migrations
/
Filename :
2023_07_08_115031_create_addresses_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('addresses', function (Blueprint $table) { $table->id(); $table->string('full_name'); $table->string('email')->nullable(); $table->string('country_code'); $table->string('phone'); $table->string('country'); $table->string('address'); $table->string('state')->nullable(); $table->string('city')->nullable(); $table->string('zip_code')->nullable(); $table->string('latitude')->nullable(); $table->string('longitude')->nullable(); $table->foreignId('user_id')->constrained('users'); $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('addresses'); } };