bigIncrements('id'); $table->string('firstname'); $table->string('lastname'); $table->string('email'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }