Fixed #24831 -- Fixed pickling queryset with prefetch_related() after deleting objects.

This commit is contained in:
Andriy Sokolovskiy 2015-05-29 14:45:36 +03:00 committed by Tim Graham
parent e1e6399c2c
commit 2913d6b77d
3 changed files with 22 additions and 0 deletions

View file

@ -37,3 +37,6 @@ Bugfixes
* Fixed lack of unique constraint when changing a field from
``primary_key=True`` to ``unique=True`` (:ticket:`24893`).
* Fixed queryset pickling when using ``prefetch_related()`` after deleting
objects (:ticket:`24831`).