engine = 'InnoDB'; $table->increments('id'); $table->string('email'); $table->string('verify_code'); $table->timestamp('verified_at')->nullable(); $table->timestamps(); $table->softDeletes(); $table->unique(['email']); }); } /** * Reverse the migrations. */ public function down() { Schema::drop('subscribers'); } }