id(); $table->string('email', 72)->unique(); $table->string('password', 72); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('admins'); } }