MongoDB migration

Hello @Harsha_Buggi,

Glad you solved the connection issues, I think now it is easy, you just need to put your logic of migration and insert/update it into a new collection or log the error.

It should work, make sure you are using the latest version of Mongoose npm, the purpose of .Schema({}, and strict: false is to make schema flexible, there is no restriction to insert new properties in the collection, but it is okay if you do fix schema properties, it will work. like this .Schema({ // your schema properties }, { collection: "collection name" })

I am not sure if is it available or not…