summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFederico Frenguelli <synasius@gmail.com>2015-11-07 17:08:03 +0100
committerTim Graham <timograham@gmail.com>2015-12-10 16:29:00 -0500
commit905e94a07e557f470fd1d01e7cd067cdae2b7794 (patch)
treea4d5e186d370d8b7d97e10c31cba35ce49fce28e /docs
parent02c049ab1ab5273d4212890635f94cc7eac7b158 (diff)
[1.8.x] Fixed #25412 -- Fixed missing PostgreSQL index on Char/TextField when using AlterField.
Thanks to Emanuele Palazzetti for the help. Backport of 3a36c8079544c83dcdea4e52181efcd2d1e86b9c from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.8.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.8.txt b/docs/releases/1.8.8.txt
index 3b86fefaea..5dca5bccdb 100644
--- a/docs/releases/1.8.8.txt
+++ b/docs/releases/1.8.8.txt
@@ -30,3 +30,7 @@ Bugfixes
* Fixed a state bug when migrating a ``SeparateDatabaseAndState`` operation
backwards (:ticket:`25896`).
+
+* Fixed missing ``varchar/text_pattern_ops`` index on ``CharField`` and
+ ``TextField`` respectively when using ``AlterField`` on PostgreSQL
+ (:ticket:`25412`).