increments('id'); $table->string('firstname'); $table->string('lastname'); $table->string('email')->unique(); $table->string('password'); $table->string('rank'); $table->string('adress'); $table->string('telephone'); $table->string('age'); $table->string('avatar'); $table->string('sexe'); $table->string('job'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }