summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2014-09-25 20:21:12 +0200
committerTim Graham <timograham@gmail.com>2014-09-25 17:49:44 -0400
commit45bd7b3bd9008941580c100b9fc7361e3ff3ff0d (patch)
tree2387e0e8fe6328fc31013553846dc5974a4e1e78 /docs
parentd8e157d5ab1648a509b25d5ec571572ae936de79 (diff)
Fixed #23455 -- Forced related_name to be a unicode string during deconstruction.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt
index a19e19d03b..3b53534185 100644
--- a/docs/releases/1.7.1.txt
+++ b/docs/releases/1.7.1.txt
@@ -76,3 +76,7 @@ Bugfixes
* Added ``SchemaEditor`` for MySQL GIS backend so that spatial indexes will be
created for apps with migrations (:ticket:`23538`).
+
+* Coerced the ``related_name`` model field option to unicode during migration
+ generation to generate migrations that work with both Python 2 and 3
+ (:ticket:`23455`).