mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
31 lines
596 B
JavaScript
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);
|