//increments('id'); // $table->string('username')->unique(); // $table->string('name'); // $table->string('email')->unique(); // $table->string('password', 60); // // added this one line // $table->enum('role',['superadmin','siteadmin','dentist','assistant','patient'])->default('patient'); // $table->rememberToken(); // $table->timestamps(); // }); // } // // /** // * Reverse the migrations. // * // * @return void // */ // public function down() // { // Schema::drop('users'); // } //}