­

How To enforce Mongoose Collection Name

19:37

By defining '{ collection: ''} at the end of Schema definition, we can make the MongoDB Object Oriented Collection Name as we wanted it to be. For example,

var UserInfo = new Schema({
 username : String,
 password : String 
}, { collection: 'userinfo' });

You Might Also Like

0 comments