summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndrzej Pragacz <apragacz@o2.pl>2014-11-15 15:43:06 +0100
committerTim Graham <timograham@gmail.com>2014-11-21 10:57:38 -0500
commitfeded19104b14bc28aaccf550265157df84593ba (patch)
tree21d6a02b76c2dca8b106540165be61075c655176 /docs
parent145467a63688eb9055d176d84655cc029060da30 (diff)
[1.7.x] Fixed #23794 -- Fixed migrations crash when removing a field that's part of index/unique_together.
Backport of 72729f844e0dd9bd01b3874171b89ab0d136a40e from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index cfa68b8b3a..c9f69fe856 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -74,3 +74,6 @@ Bugfixes
* Fixed a rare query error when using deeply nested subqueries
(:ticket:`23605`).
+
+* Fixed a crash in migrations when deleting a field that is part of a
+ ``index/unique_together`` constraint (:ticket:`23794`).