increments('id')->unsigned(); $table->string('email')->index(); $table->string('action',32); $table->string('token')->index(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('email_tokens'); } }