can read and display workouts

This commit is contained in:
2013-01-19 15:01:03 -05:00
parent 4ea082330b
commit 651a534523
140 changed files with 14677 additions and 29 deletions

View File

@@ -2,13 +2,13 @@ var Schema = require('mongoose').Schema;
var Split = new Schema({
reps: { type: String},
weight: { type: String}
reps: String,
weight: String
});
var Element = new Schema({
ExerciseID: { type: String},
exerciseID: String,
splits: [Split]
});