・4 Minutes
How to add extra fields to M2M relations in Django?
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 do we do to add extra fields to the intermediary model in Django?