diff options
| author | Simon Charette <charette.s@gmail.com> | 2013-08-20 01:52:32 -0400 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2013-10-03 13:20:05 -0400 |
| commit | fa2e1371cda1e72d82b4133ad0b49a18e43ba411 (patch) | |
| tree | 9d732e2ac0eb0b89cfc37ecccab41fe64eb31b33 /docs | |
| parent | c4db7f075e269411287ff14b5518412250ba455f (diff) | |
Fixed #21216 -- Allow `OneToOneField` reverse accessor to be hidden.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.7.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt index d613220508..8f650a1a9e 100644 --- a/docs/releases/1.7.txt +++ b/docs/releases/1.7.txt @@ -289,6 +289,11 @@ Models * Explicit :class:`~django.db.models.OneToOneField` for :ref:`multi-table-inheritance` are now discovered in abstract classes. +* Is it now possible to avoid creating a backward relation for + :class:`~django.db.models.OneToOneField` by setting its + :attr:`~django.db.models.ForeignKey.related_name` to + `'+'` or ending it with `'+'`. + Signals ^^^^^^^ |
