From 54f962c0bf3cf4802ee2c94194bcdb4bd4728106 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 22 Sep 2008 11:07:35 +0000 Subject: Fixed #8967: Added documentation for the 'through' option on a many-to-many field in the fields reference documentation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9083 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/models/fields.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'docs/ref') diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 9c5fd23a36..ac1e2ffffb 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -887,6 +887,17 @@ that control how the relationship functions. add the descriptor for the reverse relationship, allowing :class:`ManyToManyField` relationships to be non-symmetrical. +.. attribute:: ManyToManyFields.through + + Django will automatically generate a table to manage many-to-many + relationships. However, if you want to manually specify the intermediary + table, you can use the :attr:`~ManyToManyField.through` option to specify + the Django model that represents the intermediate table that you want to + use. + + The most common use for this option is when you want to associate + :ref:`extra data with a many-to-many relationship `. + .. attribute:: ManyToManyField.db_table The name of the table to create for storing the many-to-many data. If this -- cgit v1.3