Skip to content

Instantly share code, notes, and snippets.

View alexjamesbrown's full-sized avatar

Alex Brown alexjamesbrown

View GitHub Profile
@alexjamesbrown
alexjamesbrown / invitees.js
Created April 19, 2012 00:42 — forked from aheckmann/invitees.js
populated invitees
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
mongoose.connect('localhost', 'testing_invitees');
var userSchema = new Schema({
firstName: String
});
var U = mongoose.model('User', userSchema);
var eventMemberSchema = new Schema ({