[Answered ]-Self Many to many field adding when is not supossed to

1👍

You need to add symmetrical=False, in your m2m relation. and + sign at the end of related name.

followers = models.ManyToManyField('self', symmetrical=False, related_name='followers+', blank=True)

Leave a comment