Suppose I make a model:
class A(models.Model):
col = models.ManyToManyField(B)
Now after migration, this will create a table A_B with fields id,A_id,B_id. Now if I want to access the id of the table A_B, how to do that? And how to update the B_id of this table?