/node_modules/mongoose/examples/querybuilder/person.js
https://bitbucket.org/coleman333/smartsite · JavaScript · 15 lines · 10 code · 2 blank · 3 comment · 0 complexity · 320486e117b23f2c7bf85649e74af7b2 MD5 · raw file
- // import the necessary modules
- var mongoose = require('../../lib');
- var Schema = mongoose.Schema;
- // create an export function to encapsulate the model creation
- module.exports = function() {
- // define schema
- var PersonSchema = new Schema({
- name: String,
- age: Number,
- birthday: Date
- });
- mongoose.model('Person', PersonSchema);
- };