summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2014-09-09 23:28:45 +0200
committerTim Graham <timograham@gmail.com>2014-09-10 07:57:31 -0400
commit67872bfff12de7dcf22c966970fe21f65fe593c8 (patch)
tree36f9e57c165ff6331552e5ab23ff261b9651b4d8 /docs
parentc2fe985733ecf5ec113a92f155cc6b769932d544 (diff)
[1.7.x] Fixed #23452 -- Prevented infinite migrations for empty unique/index_together.
Thanks fwkroon for the report. Backport of 6d5958c7a3 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt
index 46a19f1f6d..b98ec1b847 100644
--- a/docs/releases/1.7.1.txt
+++ b/docs/releases/1.7.1.txt
@@ -31,3 +31,6 @@ Bugfixes
``'auth.User'`` model (:ticket:`11775`). As a side effect, the setting now
adds a ``get_absolute_url()`` method to any model that appears in
``ABSOLUTE_URL_OVERRIDES`` but doesn't define ``get_absolute_url()``.
+
+* Empty ``index_together`` or ``unique_together`` model options no longer
+ results in infinite migrations (:ticket:`23452`).