pass the collectionName as the third argument
1 |
var Person = mongoose.model('person', userSchema, 'person'); |
OR
var UserInfo = new Schema({
username : String,
password : String
}, { collection: ‘userinfo’ });
pass the collectionName as the third argument
1 |
var Person = mongoose.model('person', userSchema, 'person'); |
OR
var UserInfo = new Schema({
username : String,
password : String
}, { collection: ‘userinfo’ });