I'm using MongoEngine and have a model that I just updated. I want to delete the old version of the objects in mongodb and insert some entries using the new version of the Model. Currently with mongoengine it looks like I can only act on the collection if it matches a Mongoengine object. My code only ever has the current version of the Model.
Is there a way to delete a document (or drop a collection) using mongoengine if I don't have a matching Model?