summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-01-07 20:06:58 -0500
committerTim Graham <timograham@gmail.com>2016-01-08 12:47:05 -0500
commit56aaae58a746eb39d5e92ba60f59f4c750a8e1a8 (patch)
tree1bf78c509606c35691bbf0ede39b47c484ebf462 /docs
parent54d3ba84066301b9cdbbd657620c0f1e5c2422c0 (diff)
Fixed #26034 -- Fixed incorrect index handling on PostgreSQL on Char/TextField with unique=True and db_index=True.
Thanks Simon Charette for review.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.9.txt5
-rw-r--r--docs/releases/1.9.2.txt5
2 files changed, 10 insertions, 0 deletions
diff --git a/docs/releases/1.8.9.txt b/docs/releases/1.8.9.txt
index 5525eca84a..080d6506e8 100644
--- a/docs/releases/1.8.9.txt
+++ b/docs/releases/1.8.9.txt
@@ -18,3 +18,8 @@ Bugfixes
* Fixed a regression that caused the incorrect day to be selected when opening
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`).
diff --git a/docs/releases/1.9.2.txt b/docs/releases/1.9.2.txt
index ffe5030d9e..d7857052ad 100644
--- a/docs/releases/1.9.2.txt
+++ b/docs/releases/1.9.2.txt
@@ -25,3 +25,8 @@ Bugfixes
* Fixed a regression in the admin's edit related model popup that caused an
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`).