[Answered ]-Not able to migrate, Foreignkey in models is causing the issue

1👍

try this:

org_id = models.ForeignKey(Organisation,to_field=id, on_delete=models.CASCADE)

or

 org_id = models.ForeignKey(Organisation, on_delete=models.CASCADE)

And also the Organization class is created above the Team class

👤ali

Leave a comment