This commit is contained in:
Dobie Wollert
2013-09-30 01:47:14 -04:00
parent 790c1ca597
commit cfcafd74ac
7 changed files with 82 additions and 10 deletions

View File

@ -20,7 +20,11 @@ var clientSchema = new Schema({
frequencies: {},
pms: {},
workorders: [{ type: ObjectId, ref: 'Workorder' }],
deleted: { type: Boolean, default: false }
deleted: { type: Boolean, default: false },
notes: {
internal: String,
tech: String
}
});
module.exports = mongoose.model('Client', clientSchema);