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:55:19 -0500
commit72729f844e0dd9bd01b3874171b89ab0d136a40e (patch)
treea581373c4d716a5754a2de7bf60bb1174a12e002 /docs
parentf957e2b04c9844ec849ffab07f8a1a5f10f753ff (diff)
Fixed #23794 -- Fixed migrations crash when removing a field that's part of index/unique_together.
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`).