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:50:50 -0400
commite8a08514de6b97de1fce13b6c6b24cf72d1d60d9 (patch)
treea9d43c0bd2f7262068bd59657cc7cff19913407c /docs
parent1dec42822c76c10ca9c1dc939546758c0c11b1b7 (diff)
[1.7.x] Fixed #23455 -- Forced related_name to be a unicode string during deconstruction.
Backport of 45bd7b3bd9 from master
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`).