Guest User

Untitled

a guest
Mar 9th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. const mongoose = require('mongoose')
  2. const Schema = mongoose.Schema
  3.  
  4. const User = new Schema({
  5. email: String,
  6. password: String
  7. })
  8.  
  9. module.exports = mongoose.model('User', User)
Add Comment
Please, Sign In to add comment