【发布时间】:2021-01-14 14:30:19
【问题描述】:
当我使用 Sudo 权限运行迁移时出现此错误:
File "/home/dell/.local/lib/python3.6/site-packages/django/db/migrations/graph.py", line 58, in raise_error
raise NodeNotFoundError(self.error_message, self.key, origin=self.origin)
django.db.migrations.exceptions.NodeNotFoundError: Migration auth.0013_auto_20210105_1445 dependencies reference nonexistent parent node ('auth', '0012_alter_user_first_name_max_length')
【问题讨论】:
-
请发布您的代码。
-
您的代码可能有问题,我们需要您发布相关代码来帮助您
-
您的最新迁移
0013_auto_20210105_1445似乎引用了之前的迁移0012_alter_user_first_name_max_length,由于某种原因不再存在。也许你已经删除了它?
标签: python django django-migrations