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