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

Fixed #27407 -- Made Model.delete(keep_parents=True) preserve parent reverse relationships.

Thanks Tim for the review.
This commit is contained in:
Simon Charette
2016-09-10 20:30:14 -04:00
parent eed6150009
commit 31a56e30cf
3 changed files with 16 additions and 0 deletions

View File

@@ -16,3 +16,6 @@ Bugfixes
* Fixed incorrect ``app_label`` / ``model_name`` arguments for
``allow_migrate()`` in ``makemigrations`` migration consistency checks
(:ticket:`27461`).
* Made ``Model.delete(keep_parents=True)`` preserve parent reverse
relationships in multi-table inheritance (:ticket:`27407`).