I have a collection in MongoDB atlas named callhistories I want to rename it as call_history.
If I add the third option in my mongoose model as below :
const callHistory = mongoose.model("callHistory", callHistorySchema, 'call_history');
Would it rename my collection in MongoDB atlas or it will break my site?
Please Help..!