Advertisement
Guest User

Untitled

a guest
Jul 31st, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. const passportLocalMongoose = require("passport-local-mongoose");
  2. const mongoose = require("mongoose");
  3.  
  4. var UserSchema = mongoose.Schema({
  5. username: String,
  6. password: String
  7. });
  8.  
  9. UserSchema.plugin(passportLocalMongoose);
  10.  
  11. mongoose.exports = mongoose.model("User", UserSchema);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement