I'm using passport-local-mongoose with Node.js, Express.js, MongoDB for a webapp, and I want to register users with a username field, a password field, a company name field, and a phone number field (all as Strings). However I am only able to get the username and salted password to show in the database. How do I also include the company name and the phone number fields in the database?I'm using passport-local-mongoose with Node.js,