我遇到django迁移问题。我收到这个错误:
django.db.migrations.exceptions.NodeNotFoundError: Migration user.0050_merge_20170523_1254 dependencies reference nonexistent parent node ('user', '0049_auto_20170519_1934')
我修复了错误,删除了一些行,但在修复了所有这些错误后,我得到了其他错误:
ValueError: Could not find common ancestor of {'0050_merge_20170523_1254', '0007_auto_20170524_1540'}
我无法解决这个问题。我可以删除数据库并再次makemigrations ...但是在生产环境中我想知道如何正确修复,没有drop database哈哈。
谢谢!
答案 0 :(得分:5)
下次回滚时:
./manage.py migrate yourAppName 0012
(这只是示例编号)并点击不要只是删除迁移!希望有所帮助。