UNPKG

254 BJavaScriptView Raw
1var mongoose = require('mongoose'),
2 Schema = mongoose.Schema;
3
4var regionsSchema = new Schema({
5 id: { type: String },
6 _link: { self: { href: {type: String }}}
7
8});
9
10
11module.exports = mongoose.model('regions', regionsSchema);
\No newline at end of file