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

Fixed #28298 -- Prevented a primary key alteration from adding a foreign key constraint if db_constraint=False.

This commit is contained in:
Josh Schneier
2017-06-11 20:05:54 -04:00
committed by Tim Graham
parent 0af14b2eaa
commit fba0eaa5d6
3 changed files with 36 additions and 2 deletions

View File

@@ -51,3 +51,6 @@ Bugfixes
1.11.1, casting was added in Python to avoid localization of numeric values
in Django templates, but this made some use cases more difficult. Casting is
now done in the template using the ``|stringformat:'s'`` filter.
* Prevented a primary key alteration from adding a foreign key constraint if
``db_constraint=False`` (:ticket:`28298`).