Вываливается вот такое):
File "/usr/home/jeltoesolnce/.virtualenvs/django-cms-zinnia/lib/python2.7/site-packages/south/migration/base.py", line 323, in migration_class
return self.migration().Migration
AttributeError: 'module' object has no attribute 'Migration'
Вот что пишет разработчик Циннии в документации:
Fortunatly South provides an elegant solution with the
SOUTH_MIGRATION_MODULES setting. Once this setting done for the
'zinnia' key, because you are now out the Zinnia’s default migrations
flow, you have to delete the ghost migrations for Zinnia. At this step
you can now start to write new migrations.
It’s recommended that the new initial migration represents the default
Entry schema provided by Zinnia, because after that, you just have to
write a new migration for reflecting your changes, and you can alter
your database schema with the migrate command.
Я скопировал миграции, сделал, как понял:
./manage.py migrate zinnia --delete-ghost-migrations
Результат такой:
AttributeError: 'module' object has no attribute 'Migration'
Трэйсбек там, на всякий случай: http://pastebin.com/mgRspyJe
Как мне гост-миграции удалить, вообще не понял...