I have a test app using Ruby 2.2.2 and am using Mongoid 7.0.0 and Moped 1.5.3 with MongoDB 3.6.2 - we are upgrading an ancient codebase using Mongoid 4.x and MongoDB 2.6 and found numerous breaking-changes in the API along the way
The most serious is we used to be able to do SomeModel.collection.rename however this API method now no longer exists (to my knowledge) and gives an undefined error
I've also tried the following:
Mongoid.default_client.command({ renameCollection: "test.some_collection", to: "test.some_collection2", dropTarget: true })
However this returns
Mongo::Error::OperationFailure: renameCollection may only be run against the admin database. (13)
From a command shell however, I'm able to issue:
db.some_collection.renameCollection("some_collection2")
And this works - this seems to be my only last recourse from what I can see, how would I issue this as a Moped command? (I'm not overly familiar with the syntax scheme)
Also, any reason why such a seemingly straightforward operation is apparently not exposed by Mongoid?
So found a way to do it - some of my collections are stored on different databases