summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-06-30 14:51:08 -0400
committerTim Graham <timograham@gmail.com>2017-12-01 19:09:21 -0500
commit4dc35e126d8461589b4b4bc47b6f6bd6cc4a1455 (patch)
treeadfb7be30f3b9fb5f65032a79fe4561bba2235b1 /docs
parentbfc3fa3d3b291b40ed1e2ce6da3b2675b40f0a54 (diff)
[2.0.x] Fixed #28305 -- Fixed "Cannot change column 'x': used in a foreign key constraint" crash on MySQL with a sequence of AlterField or RenameField operations.
Regression in 45ded053b1f4320284aa5dac63052f6d1baefea9. Backport of c3e0adcad8d8ba94b33cabd137056166ed36dae0 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.8.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.11.8.txt b/docs/releases/1.11.8.txt
index 596ea434ec..9ef7d73abf 100644
--- a/docs/releases/1.11.8.txt
+++ b/docs/releases/1.11.8.txt
@@ -30,3 +30,7 @@ Bugfixes
* Fixed a regression in caching of a ``GenericForeignKey`` when the referenced
model instance uses multi-table inheritance (:ticket:`28856`).
+
+* Fixed "Cannot change column 'x': used in a foreign key constraint" crash on
+ MySQL with a sequence of ``AlterField`` and/or ``RenameField`` operations in
+ a migration (:ticket:`28305`).