Advertisement
xExekut3x

models-model

Dec 1st, 2015
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var mongoose = require('mongoose');
  2. var Schema = mongoose.Schema;
  3.  
  4. var ModelSchema = new Schema(
  5. {
  6. name: String
  7. },
  8. {
  9. collection: 'some_collection'
  10. }
  11. );
  12.  
  13. module.exports = mongoose.model('Model', ModelSchema);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement