我正在将django应用程序从1.6升级到1.9,我收到错误:
django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: messages
我做了所描述的更改docs(并审核了undefined behavior) 但之后,我最终得到了
OperationalError: no such table: user_messages_message
尝试从管理页面查看记录时。
我可以使用不同的名称重新创建应用程序,我只是想避免它。
答案 0 :(得分:0)
自Django 1.7
发布以来,它内置了对架构迁移的支持,请阅读release notes,或许您需要遵循Upgrading from South
指南?希望它能指出你的解决方案。