Guest User

Untitled

a guest
Oct 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. const mongoose = require( 'mongoose' )
  2. const Schema = mongoose.Schema
  3.  
  4. const schema = Schema( {
  5. username: String,
  6. email: String,
  7. password: String
  8. } )
  9.  
  10. const Model = mongoose.model( 'User', schema )
Add Comment
Please, Sign In to add comment