summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-10-14 09:37:45 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-10-14 11:45:47 +0200
commitd2f02aa56b57f8b3de1b624f8b1a909c67b6823a (patch)
treed9cd5df6553e726cc3f9402bad11616aacc24c06 /docs
parentd4d37d09008f920c8cd4faa9ec075de51da0a36f (diff)
[2.2.x] Fixed #30870 -- Fixed showing that RunPython operations are irreversible by migrate --plan.
Thanks Hasan Ramezani for the initial patch and Kyle Dickerson for the report. Backport of 06d34aab7cfb1632a1538a243db81f24498525ff 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 f39587e43e..3232b5c5e8 100644
--- a/docs/releases/2.2.7.txt
+++ b/docs/releases/2.2.7.txt
@@ -13,3 +13,7 @@ Bugfixes
``has_keys``, or ``has_any_keys`` lookup on
:class:`~django.contrib.postgres.fields.JSONField`, if the right or left hand
side of an expression is a key transform (:ticket:`30826`).
+
+* 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`).