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' });