Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
database
/
migrations
:
2022_06_13_220336_create_kycs_table.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php use App\Models\User; use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateKycsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('kycs', function (Blueprint $table) { $table->id(); $table->foreignIdFor(User::class); $table->string('first_name')->nullable(); $table->string('last_name')->nullable(); $table->string('email')->nullable()->unique(); $table->string('phone_number')->nullable(); $table->string('dob')->nullable(); $table->string('social_media')->nullable(); $table->text('address')->nullable(); $table->string('city')->nullable(); $table->string('state')->nullable(); $table->string('country')->nullable(); $table->string('document_type')->nullable(); $table->text('frontimg')->nullable(); $table->text('backimg')->nullable(); $table->string('status')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('kycs'); } }