summaryrefslogtreecommitdiffstats
path: root/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/express/connection-sharing/modelA.js
blob: 78f9ff6d30e173dde07c0f57115eff6ace146bbd (plain)
1
2
3
4
5
var Schema = require('../../../lib').Schema;
var mySchema = Schema({name: String});

/* global db */
module.exports = db.model('MyModel', mySchema);