summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHannes Ljungberg <hannes@5monkeys.se>2019-10-23 22:16:55 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-10-24 09:53:33 +0200
commit7fe09e6d41b35d5a9a03783650249723313d3793 (patch)
tree219bfad207bcedc34da3be9c7e3aa14157b2a038 /docs
parentc7f4a7da0da35feaa3c8605bfc53420ffefded4c (diff)
[2.2.x] Fixed #30903 -- Fixed migrations crash on PostgreSQL when adding Index with opclasses and ordering.
Backport of fa5f3291e7f2611d53e64ab481ebe951b0161791 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.2.7.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/2.2.7.txt b/docs/releases/2.2.7.txt
index 3232b5c5e8..cf1f52a685 100644
--- a/docs/releases/2.2.7.txt
+++ b/docs/releases/2.2.7.txt
@@ -17,3 +17,7 @@ Bugfixes
* Prevented :option:`migrate --plan` from showing that ``RunPython`` operations
are irreversible when ``reverse_code`` callables don't have docstrings or
when showing a forward migration plan (:ticket:`30870`).
+
+* Fixed migrations crash on PostgreSQL when adding an
+ :class:`~django.db.models.Index` with fields ordering and
+ :attr:`~.Index.opclasses` (:ticket:`30903`).