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

Fixed #28597 -- Fixed crash with the name of a model's autogenerated primary key in an Index's fields.

This commit is contained in:
Mariusz Felisiak
2017-09-17 08:26:18 +02:00
committed by Tim Graham
parent 94cd8efc50
commit fb02ebe889
4 changed files with 15 additions and 8 deletions

View File

@@ -11,3 +11,6 @@ Bugfixes
* Made the ``CharField`` form field convert whitespace-only values to the
``empty_value`` when ``strip`` is enabled (:ticket:`28555`).
* Fixed crash when using the name of a model's autogenerated primary key
(``id``) in an ``Index``'s ``fields`` (:ticket:`28597`).