Files
biomedjs/app/model/client.js
Dobie Wollert cfcafd74ac stuff
2013-09-30 01:47:14 -04:00

31 lines
596 B
JavaScript

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: {},
pms: {},
workorders: [{ type: ObjectId, ref: 'Workorder' }],
deleted: { type: Boolean, default: false },
notes: {
internal: String,
tech: String
}
});
module.exports = mongoose.model('Client', clientSchema);