[Django]-Extend Django's ManyToManyField with custom fields

7👍

This is not the correct way to do it. See Extra fields on many-to-many relationships in the Django documentation.

Besides, the CustomManyToManyField you created is a custom field, not a model, so it can’t contain fields.

Leave a comment