OK, with some trial and error: I created a โfrozen migrationโ this way:
~ $ django_admin.py schemamigration --freeze mezzanine_slides mezzanine_slides freeze --empty Created 0002_freeze.py. You must now edit this migration and add the code for each direction.
Then I edited the resulting migration and deleted the added field so that:
! $ django_admin.py schemamigration mezzanine_slides --auto + Added field caption on mezzanine_slides.Slide Created 0003_auto__add_field_slide_caption.py. You can now apply this migration with: ./manage.py migrate mezzanine_slides
with this done, migration worked fine.
Paul whipp
source share