1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #23065 -- Quoted constraint names in SQL generated by migrations.

This commit is contained in:
Sergey Fedoseev
2014-09-16 23:37:18 +06:00
committed by Tim Graham
parent 0bea6c8749
commit 83cd18633f
3 changed files with 59 additions and 6 deletions

View File

@@ -55,3 +55,6 @@ Bugfixes
* Formats for Welsh (``cy``) and several Chinese locales (``zh_CN``,
``zh_Hans``, ``zh_Hant`` and ``zh_TW``) have been added. Formats for
Macedonian have been fixed (trailing dot removed, :ticket:`23532`).
* Added quoting of constraint names in the SQL generated by migrations to
prevent crash with uppercase characters in the name (:ticket:`23065`).