mongoengine-migrate icon indicating copy to clipboard operation
mongoengine-migrate copied to clipboard

Possibility to migrate changes on save method?

Open jorekai opened this issue 3 years ago • 0 comments

Hey is it possible to migrate changes in custom save methods of a document? I could not determine this by reading through the docs. Below is a small example

before changes:

class Test(Document):
  fieldA = ...
  fieldB = ...

after changes:

class Test(Document):
  fieldA = ...
  fieldB = ...
  fieldC = ...
  
  def save(self, *args, **kwargs):
    do_sth_with_fieldC()
    super().save()

jorekai avatar Jul 02 '21 12:07 jorekai