bdragon300 / mongoengine-migrate

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

Print warning if user has set `SequenceField.value_decorator` #30

Open bdragon300 opened 3 years ago

bdragon300 commented 3 years ago

SequenceField.value_decorator uses to get next sequence value. By default it is int().

But the user could set custom decorator function. We cannot do smth with this change, but it's reasonable to print a warning about this fact when user executes makemigrations.