1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 10:52:47 +00:00
Files
mywebsite/node_modules/mongoose/examples/express/connection-sharing/modelA.js
2015-06-24 11:18:57 -05:00

7 lines
152 B
JavaScript

var Schema = require('../../../lib').Schema;
var mySchema = Schema({ name: String });
// db is global
module.exports = db.model('MyModel', mySchema);