summaryrefslogtreecommitdiff
path: root/docs/releases/1.8.7.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-11-20 10:31:33 -0500
committerTim Graham <timograham@gmail.com>2015-11-21 10:34:01 -0500
commit54e2e688e1cfbdb37dfa5dd3b3ffdf2af12b4423 (patch)
treece871cf187117274c4b1b5b9e84a199e985834b1 /docs/releases/1.8.7.txt
parentccc8f67b7760dd12faf6007f12a672a8e03f4d88 (diff)
Fixed #25715 -- Fixed Model.refresh_from_db() with ForeignKey w/on_delete=SET_NULL.
Diffstat (limited to 'docs/releases/1.8.7.txt')
-rw-r--r--docs/releases/1.8.7.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.7.txt b/docs/releases/1.8.7.txt
index acc82f1581..8ffae59b21 100644
--- a/docs/releases/1.8.7.txt
+++ b/docs/releases/1.8.7.txt
@@ -36,3 +36,6 @@ Bugfixes
:class:`~django.contrib.postgres.fields.DateTimeRangeField` (:ticket:`24937`).
* Fixed the exact lookup of ``ArrayField`` (:ticket:`25666`).
+
+* Fixed ``Model.refresh_from_db()`` updating of ``ForeignKey`` fields with
+ ``on_delete=models.SET_NULL`` (:ticket:`25715`).