increments('id'); $table->string('email')->nullable(false); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('subscribers'); } }