In Django, if you need to create a many-to-many relation you must
use ManyToManyField
for this purpose and Django
automatically generate an intermediary model and everything is
okay. But what we do if we want to add extra fields to the
intermediary model in Django?...