increments('id'); $table->string('login')->unique(); $table->string('email')->unique(); $table->string('password'); $table->string('token')->nullable(); $table->string('ip')->nullable(); $table->integer('isadmin'); $table->integer('creation_date'); $table->integer('modification_date'); $table->unique(['login', 'email','password']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }