django.core.exceptions.FieldDoesNotExist: model has no field named <function SET_NULL at 0x7fc5ae8836e0>
问题 After some googling and only finding a dead-end topic, I'm still stuck on a migration problem. My model : class CurationArticle(models.Model): title = models.CharField(max_length=150, null=True, blank=True) description = models.TextField(null=True, blank=True) link = models.CharField(max_length=255, null=True, blank=True) author = models.CharField(max_length=150, blank=True, null=True) author_link = models.CharField(max_length=255, blank=True, null=True) def __unicode__(self): return self