diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2012-02-03 17:45:28 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2012-02-03 17:45:28 +0000 |
| commit | ead8a869ce9b23cf1fc704efb0903d3e4905fb4b (patch) | |
| tree | 1a82ce5804b65e6ccbb81415142eedf410594ae1 /docs/ref/models | |
| parent | 086697b23156222e22476e6c546cff6e76658139 (diff) | |
Edited models/options.txt changes from [17314]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17420 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/options.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt index d4c7df1b7a..6ca3d3b2d0 100644 --- a/docs/ref/models/options.txt +++ b/docs/ref/models/options.txt @@ -255,10 +255,10 @@ Django quotes column and table names behind the scenes. unique_together = ("driver", "restaurant") A :class:`~django.db.models.ManyToManyField` cannot be included in - unique_together (it's not even clear what that would mean). If you + unique_together. (It's not clear what that would even mean!) If you need to validate uniqueness related to a - :class:`~django.db.models.ManyToManyField`, look at signals or - using an explicit :attr:`through <ManyToManyField.through>` model. + :class:`~django.db.models.ManyToManyField`, try using a signal or + an explicit :attr:`through <ManyToManyField.through>` model. ``verbose_name`` ---------------- |
