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
Source:stackexchange.com