summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJosh Schneier <josh.schneier@gmail.com>2017-06-11 20:05:54 -0400
committerTim Graham <timograham@gmail.com>2017-06-22 21:31:56 -0400
commitfba0eaa5d60603721d7b4653e3efacbfb3613bd2 (patch)
tree4192e6b562aa549dbe8b67405c10b3181b43ee22 /docs
parent0af14b2eaa0bf0821a8aacc8486489a1eb348397 (diff)
Fixed #28298 -- Prevented a primary key alteration from adding a foreign key constraint if db_constraint=False.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.11.3.txt b/docs/releases/1.11.3.txt
index 9aab4fbfb7..1c716bf5a3 100644
--- a/docs/releases/1.11.3.txt
+++ b/docs/releases/1.11.3.txt
@@ -51,3 +51,6 @@ Bugfixes
1.11.1, casting was added in Python to avoid localization of numeric values
in Django templates, but this made some use cases more difficult. Casting is
now done in the template using the ``|stringformat:'s'`` filter.
+
+* Prevented a primary key alteration from adding a foreign key constraint if
+ ``db_constraint=False`` (:ticket:`28298`).