uuid('id')->primary(); $table->string('name'); $table->string('nrk')->unique(); $table->string('role_name', 30); // $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }