Jul 22, 2017 · 1 min read
Actually after creating StudentSubject model you do not need to add ManyToMany field. But if you add ManyToMany field you will get all the ManyToMany queryset, although you use ManyToMany without ‘through’ parameter but it will create a new table for many to many relation. Now here is an another example, “user can subscribe many package and a package can have many subscriber” in this situation a subscription can have expiry date, can have subscription level. Here subscription expiry date and subscription level are your metadata data for many to many relation. I think you got your answer, if not please feel free to ask.