django 1.7.1 - migrate:django.db.migrations.graph.CircularDependencyError

时间:2014-12-25 14:28:47

标签: python django django-1.7 makemigrations

我有一个现有的应用程序有两个模型:

class A(models.Model):
  #...

class B(models.Modele):
  a = models.ForeignKey(A)
  # ..

我有django 1.6,现在我升级到1.7.1而且我做了:

python manage.py makemigrations myapp

它为0001_initial.py中的模型A和B创建了两个迁移步骤。然后我做了:

python manage.py migrate

但我在这里

django.db.migrations.graph.CircularDependencyError

这是截图:

enter image description here

我该如何解决这个问题? myapp已经在生产中用于DB中的东西,所以我需要小心,如果要删除或更新Foreignkeys等...这真的很烦人,我很想拥有django 1.7

0 个答案:

没有答案