Guest User

Untitled

a guest
Feb 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // User Schema
  2. const UserSchema = new Schema({
  3.  
  4. // PERSONAL USER INFO
  5. username: {
  6. type: String,
  7. required: true,
  8. index: true,
  9. unique: true,
  10. },
  11. email: {
  12. type: String,
  13. required: true,
  14. index: true,
  15. unique: true
  16. },
  17. password: {
  18. type: String,
  19. required: true,
  20. },
  21. ....
  22. });
Add Comment
Please, Sign In to add comment