bdragon300 / mongoengine-migrate

Migrations for MongoEngine inspired by Django
Apache License 2.0
17 stars 5 forks source link

Deleting the related collection of GridFS field on field remove or change type #20

Open bdragon300 opened 3 years ago

bdragon300 commented 3 years ago

GridFS fields are: FileField, ImageField.

The related collection should be deleted if field of type GridFS is deleted or changed type to smth another. Also keep in mind that the collection can be in different connection (db_alias). Also don't forget to check if the collection is already defined in Documents. If so, then do nothing.

Maybe it's better to interactively ask user if do the following during executing makemigrations command.