mirror of
https://github.com/django/django.git
synced 2025-09-24 19:23:03 +00:00
Fixed #26889 -- Fixed missing PostgreSQL index in SchemaEditor.add_field().
This commit is contained in:
parent
10883b63b7
commit
2e4cfcd2b9
5 changed files with 50 additions and 1 deletions
14
docs/releases/1.8.14.txt
Normal file
14
docs/releases/1.8.14.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
===========================
|
||||
Django 1.8.14 release notes
|
||||
===========================
|
||||
|
||||
*Under development*
|
||||
|
||||
Django 1.8.14 fixes several bugs in 1.8.13.
|
||||
|
||||
Bugfixes
|
||||
========
|
||||
|
||||
* Fixed missing ``varchar/text_pattern_ops`` index on ``CharField`` and
|
||||
``TextField`` respectively when using ``AddField`` on PostgreSQL
|
||||
(:ticket:`26889`).
|
|
@ -9,4 +9,6 @@ Django 1.9.8 fixes several bugs in 1.9.7.
|
|||
Bugfixes
|
||||
========
|
||||
|
||||
* ...
|
||||
* Fixed missing ``varchar/text_pattern_ops`` index on ``CharField`` and
|
||||
``TextField`` respectively when using ``AddField`` on PostgreSQL
|
||||
(:ticket:`26889`).
|
||||
|
|
|
@ -55,6 +55,7 @@ versions of the documentation contain the release notes for any later releases.
|
|||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
1.8.14
|
||||
1.8.13
|
||||
1.8.12
|
||||
1.8.11
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue