that worked! I swear I thought I tried that but apparently not. Thanks
Daniel!
Here is my new venue model.
*// venue model *
var mongoose = require('mongoose')
,Schema = mongoose.Schema;
var contactSchema = new Schema({
firstName : { type: String, required: true, trim: true },
lastName : { type: String, required: true, trim: true },
email : { type: String, required: true, trim: true },
created : {type: Date, default: Date.now}
});
var venueSchema = new Schema({
_id : { type: String, required: true, trim: true },
name : { type: String, required: true, trim: true },
description : { type: String, required: true, trim: true },
market : { type: String, required: true, trim:true }, // key to Market.js
state : { type: String, required: true, trim:true }, // key to State.js
isActive : { type: Boolean, required: false, default: false },
siteUrl : { type: String, required: false, trim: true },
contacts : [contactSchema], // array of Contact.js
privateNotes : { type: String, required: false, trim: true },
comments : { type: String, required: false, trim: true },
coverImage : { type: String, required: true, trim: true },
images : { type: String, required: false, trim: true }
});
module.exports = mongoose.model('Venue', venueSchema);
--
--
Job Board: http://jobs.nodejs.org/
Posting guidelines:
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en
---
You received this message because you are subscribed to the Google Groups
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.