<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateVerificationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('verifications', function (Blueprint $table) { $table->engine = 'InnoDB'; $table->increments('id'); $table->integer('user_id')->unsigned()->nullable(); $table->char('mobile', 16)->nullable(); $table->char('email', 64)->nullable(); $table->char('code', 6); $table->integer('verified_at')->unsigned()->nullable(); $table->integer('expired_at')->unsigned()->nullable(); $table->integer('created_at')->unsigned(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('verifications'); } }