Various changes

This commit is contained in:
Dobie Wollert
2013-06-17 04:08:57 -04:00
parent a5f054cbbf
commit b92068b6b2
12 changed files with 179 additions and 13 deletions

7
app/model/pms.js Normal file
View File

@ -0,0 +1,7 @@
var mongoose = require('mongoose'),
Schema = mongoose.Schema,
ObjectId = Schema.ObjectId;
var pmSchema = new Schema({})
var Pm = module.exports = mongoose.model('Pm', pmSchema);