Skip to content

Instantly share code, notes, and snippets.

@BasantPandey
Created May 22, 2016 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BasantPandey/ad887dc2f56e9bc3d921d3dceab8d3f7 to your computer and use it in GitHub Desktop.
Save BasantPandey/ad887dc2f56e9bc3d921d3dceab8d3f7 to your computer and use it in GitHub Desktop.
Create Address book Model
var mongoose = require('mongoose');
module.exports = mongoose.Schema({
firstname: String,
lastname: String,
phone:String,
email:String
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment