increments('id'); $table->string('name')->unique(); $table->string('uri'); $table->string('email'); $table->string('icon')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('twofaccounts'); } }