I had a model in symmetric relationship:
class person(models.Model):
name = models.CharField(max_length=20)
friends = models.ManyToManyField('self', blank= True)
And I need a extra field to explain their relationship, for example: they be friend since 1980.
be_friend_since = models.DateField(blank = True)
How to add this extra field in my models? Thanks! :)