Fixed #29016 -- Fixed incorrect foreign key nullification on related instance deletion.

This commit is contained in:
Étienne Loks 2018-01-13 12:23:48 +01:00 committed by Tim Graham
parent cea5fe94c6
commit 9a621edf62
5 changed files with 34 additions and 4 deletions

View file

@ -9,4 +9,5 @@ Django 1.11.10 fixes several bugs in 1.11.9.
Bugfixes
========
* ...
* Fixed incorrect foreign key nullification if a model has two foreign keys to
the same model and a target model is deleted (:ticket:`29016`).

View file

@ -11,3 +11,6 @@ Bugfixes
* Fixed hidden content at the bottom of the "The install worked successfully!"
page for some languages (:ticket:`28885`).
* Fixed incorrect foreign key nullification if a model has two foreign keys to
the same model and a target model is deleted (:ticket:`29016`).