increments('id'); $table->unsignedInteger('user_id')->index(); $table->timestamp('created_at')->nullable(); $table->string('email'); $table->string('token'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('email_confirmations'); } }