refactored article to workout

This commit is contained in:
2013-01-18 13:53:18 -05:00
parent ea579b5ab0
commit dd0268e765
23 changed files with 137 additions and 132 deletions

View File

@@ -0,0 +1,6 @@
var mongoose = require('mongoose');
var workoutSchema = require('../schemas/workout');
var workout = mongoose.model('workout', workoutSchema);
module.exports = workout;