Initial Commit

This commit is contained in:
root
2013-05-06 03:38:29 -04:00
commit d392a540e7
134 changed files with 22012 additions and 0 deletions

25
app/model/client.js Normal file
View File

@ -0,0 +1,25 @@
var mongoose = require('mongoose'),
Schema = mongoose.Schema,
ObjectId = Schema.ObjectId;
var clientSchema = new Schema({
name: String,
identifier: String,
address: {
street1: String,
street2: String,
city: String,
state: String,
zip: String
},
contacts: [{
name: String,
phone: String,
email: String
}],
frequencies: {},
workorders: [{ type: ObjectId, ref: 'Workorder' }],
deleted: { type: Boolean, default: false }
});
module.exports = mongoose.model('Client', clientSchema);