summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-12-04 17:56:11 +0100
committerClaude Paroz <claude@2xlibre.net>2014-12-04 21:39:32 +0100
commit6ba960266a14756dbf6365029d46bd157bd2b155 (patch)
tree23cfbe79b72ae6eb2b82a80d99f120d31eaee01f /docs
parentd57124433f0d0f2bf61ea4e14962f3b663ab20c7 (diff)
[1.7.x] Fixed #23954 -- Added special text/varchar PostgreSQL indexes in migrations
Thanks adityagupta104 for the report and Tim Graham for the review. Backport of 8d7a48027e from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index e3db0d404e..884a5970b1 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -111,3 +111,7 @@ Bugfixes
* Fixed a crash when adding ``blank=True`` to ``TextField()`` on MySQL
(:ticket:`23920`).
+
+* Fixed index creation by the migration infrastructure, particularly when
+ dealing with PostgreSQL specific {text|varchar}_pattern_ops indexes
+ (:ticket:`23954`).