Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var UserSchema = new Schema({
  2. email: {
  3. type: String, required: true,
  4. trim: true, unique: true,
  5. match: /^\w+([.-]?\w+)*@\w+([.-]?\w+)*(\.\w{2,3})+$/
  6. },
  7. firstName: {type: String},
  8. lastName: {type: String}
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement