Advertisement
xExekut3x

models-account

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