Loading docs/ref/models/fields.txt +13 −0 Original line number Diff line number Diff line Loading @@ -1342,6 +1342,19 @@ that control how the relationship functions. :ref:`extra data with a many-to-many relationship <intermediary-manytomany>`. If you don't specify an explicit ``through`` model, there is still an implicit ``through`` model class you can use to directly access the table created to hold the association. It has three fields: * ``id``: the primary key of the relation. * ``<containing_model>_id``: the ``id`` of the model that declares the ``ManyToManyField``. * ``<other_model>_id``: the ``id`` of the model that the ``ManyToManyField`` points to. This class can be used to query associated records for a given model instance like a normal model. .. attribute:: ManyToManyField.through_fields .. versionadded:: 1.7 Loading Loading
docs/ref/models/fields.txt +13 −0 Original line number Diff line number Diff line Loading @@ -1342,6 +1342,19 @@ that control how the relationship functions. :ref:`extra data with a many-to-many relationship <intermediary-manytomany>`. If you don't specify an explicit ``through`` model, there is still an implicit ``through`` model class you can use to directly access the table created to hold the association. It has three fields: * ``id``: the primary key of the relation. * ``<containing_model>_id``: the ``id`` of the model that declares the ``ManyToManyField``. * ``<other_model>_id``: the ``id`` of the model that the ``ManyToManyField`` points to. This class can be used to query associated records for a given model instance like a normal model. .. attribute:: ManyToManyField.through_fields .. versionadded:: 1.7 Loading