<?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'); } }