summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMatt Johnson <mdj2@pdx.edu>2015-07-22 11:54:42 -0700
committerTim Graham <timograham@gmail.com>2015-07-23 18:07:38 -0400
commite063ac2fae007a2eecaeab5ce17064c31230ce29 (patch)
tree981151d26d168b54bdef160b2c97a5bc7072ace3 /docs
parent71df9b7de4bcb760e756d119685636e101898816 (diff)
Fixed #12768 -- Fixed QuerySet.raw() regression on FK with custom db_column.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.4.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.4.txt b/docs/releases/1.8.4.txt
index e6606cb37f..81b00c1800 100644
--- a/docs/releases/1.8.4.txt
+++ b/docs/releases/1.8.4.txt
@@ -14,3 +14,7 @@ Bugfixes
* Added a system check warning if the old ``TEMPLATE_*`` settings are defined
in addition to the new ``TEMPLATES`` setting.
+
+* Fixed ``QuerySet.raw()`` so ``InvalidQuery`` is not raised when using the
+ ``db_column`` name of a ``ForeignKey`` field with ``primary_key=True``
+ (:ticket:`12768`).