I\'m trying to do a function that allow a user to follow another one. the problem is when I\'m adding a new user to the \"followings\" the user that follow another user is also
By default, many-to-many relationships on self are symmetrical. If you don't want this, set symmetrical to False:
symmetrical
followings = models.ManyToManyField('self', blank=True, symmetrical=False)
See the docs