summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/releases/1.8.9.txt10
-rw-r--r--docs/releases/1.9.2.txt10
2 files changed, 12 insertions, 8 deletions
diff --git a/docs/releases/1.8.9.txt b/docs/releases/1.8.9.txt
index 86bb03d916..752dc409c4 100644
--- a/docs/releases/1.8.9.txt
+++ b/docs/releases/1.8.9.txt
@@ -19,10 +19,12 @@ Bugfixes
the admin calendar widget for timezones from GMT+0100 to GMT+1200
(:ticket:`24980`).
-* Fixed incorrect index handling in migrations on PostgreSQL when adding
- ``db_index=True`` or ``unique=True`` to a ``CharField`` or ``TextField`` that
- already had the other specified, or when removing one of them from a field
- that had both (:ticket:`26034`).
+* Fixed a regression in 1.8.8 causing incorrect index handling in migrations on
+ PostgreSQL when adding ``db_index=True`` or ``unique=True`` to a
+ ``CharField`` or ``TextField`` that already had the other specified, or when
+ removing one of them from a field that had both, or when adding
+ ``unique=True`` to a field already listed in ``unique_together``
+ (:ticket:`26034`).
* Fixed a crash when using an ``__in`` lookup inside a ``Case`` expression
(:ticket:`26071`).
diff --git a/docs/releases/1.9.2.txt b/docs/releases/1.9.2.txt
index 179cfafbb3..f977b02ac3 100644
--- a/docs/releases/1.9.2.txt
+++ b/docs/releases/1.9.2.txt
@@ -26,10 +26,12 @@ Bugfixes
escaped value to be displayed in the select dropdown of the parent window
(:ticket:`25997`).
-* Fixed incorrect index handling in migrations on PostgreSQL when adding
- ``db_index=True`` or ``unique=True`` to a ``CharField`` or ``TextField`` that
- already had the other specified, or when removing one of them from a field
- that had both (:ticket:`26034`).
+* Fixed a regression in 1.8.8 causing incorrect index handling in migrations on
+ PostgreSQL when adding ``db_index=True`` or ``unique=True`` to a
+ ``CharField`` or ``TextField`` that already had the other specified, or when
+ removing one of them from a field that had both, or when adding
+ ``unique=True`` to a field already listed in ``unique_together``
+ (:ticket:`26034`).
* Fixed a regression where defining a relation on an abstract model's field
using a string model name without an app_label no longer resolved that