Django迁移依赖项引用不存在的父节点

时间:2017-05-25 14:08:25

标签: django dependencies migration not-exists ancestor

我遇到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哈哈。

谢谢!

1 个答案:

答案 0 :(得分:5)

下次回滚时:

  1. 进入应用中的迁移文件夹。
  2. 查找要返回的迁移文件。 (例如" 0012_post_category.py")
  3. 进入终端写:./manage.py migrate yourAppName 0012(这只是示例编号)并点击
  4. 如果一切顺利的话。删除迁移文件夹中此号后面的其他迁移。
  5. 不要只是删除迁移!希望有所帮助。