diff options
| author | Tim Graham <timograham@gmail.com> | 2016-01-25 08:33:02 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-01-25 08:37:36 -0500 |
| commit | 7b6ab2885e800ed25570d78d3241c25d6a49cd4a (patch) | |
| tree | 4561b208fb9bc839e1aa5b5db83e8c81300392e4 | |
| parent | bf9385e3aa211518ec4d9b8fcac9809c146c24f2 (diff) | |
[1.8.x] Refs #26034 -- Added another case fixed by this ticket to release notes.
Thanks Shai Berger for the report.
Backport of 497b5d6feee5b7947231bd0ae6edf833773b6cce from master
| -rw-r--r-- | docs/releases/1.8.9.txt | 10 |
1 files changed, 6 insertions, 4 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`). |
