Django/South: What is the proper way to set related_name arguments for the intermediate model on a ManyToMany to self relation?
问题 This is related to a question I asked yesterday about migrating a change from a ForeignKey to self to a ManyToManyField to self, however because I'm only prototyping an app for the time being/due to time constraints, I've decided to just drop the relevant tables and reset the migration history. These are the relevant models/fields: class Person(models.Model): nominator = models.ManyToManyField('self', symmetrical=False, verbose_name=_('nominator'), through='Nomination', null=True, blank=True)