0

I want add in auto increment for my model class in mean stack. How I do bellow class?

var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/sampleApp'); 

module.exports = mongoose.model('User', {
    email : { type: String, required: true, index: { unique: true } },
    password : { type: String}
});
Thilina Sampath
  • 3,615
  • 6
  • 39
  • 65

0 Answers0