Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. let mongoose = require('mongoose');
  2.  
  3. let userSchema = mongoose.Schema({
  4. name: String,
  5. email: String
  6. });
  7. let User = mongoose.model('User', userSchema);
  8. module.exports = User;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement