Guest User

Untitled

a guest
Jan 18th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. module.exports = mongoose.model('days', {
  2. _userId : mongoose.Schema.Types.ObjectId,
  3. title : String,
  4. workout : [{
  5. workouttype: String,
  6. name: String,
  7. reps: [ Number ],
  8. weight: [ Number ]
  9. }]
  10. });
Add Comment
Please, Sign In to add comment