summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2015-05-13 17:40:57 +0200
committerClaude Paroz <claude@2xlibre.net>2015-05-15 17:08:49 +0200
commit6a0d9f068f9986c8c05e689e67be7bc22c59efc6 (patch)
treeba2194311168b562dd0b5de19d78593b4d318357 /docs
parent30e57038440d7785072088c10fef3ed6e71faba5 (diff)
[1.8.x] Fixed #24757 -- Recreated MySQL index when needed during combined index removal
Thanks Thomas Recouvreux for the report and Tim Graham for the tests and review. Backport of ae635cc36 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.2.txt b/docs/releases/1.8.2.txt
index 23483c2a5e..f14036b51f 100644
--- a/docs/releases/1.8.2.txt
+++ b/docs/releases/1.8.2.txt
@@ -27,3 +27,6 @@ Bugfixes
:ticket:`24712`).
* Fixed ``isnull`` lookup for ``HStoreField`` (:ticket:`24751`).
+
+* Fixed a MySQL crash when a migration removes a combined index (unique_together
+ or index_together) containing a foreign key (:ticket:`24757`).