1
0
mirror of https://github.com/django/django.git synced 2025-10-29 16:46:11 +00:00

[1.9.x] Fixed #25715 -- Fixed Model.refresh_from_db() with ForeignKey w/on_delete=SET_NULL.

Backport of 54e2e688e1 from master
This commit is contained in:
Tim Graham
2015-11-20 10:31:33 -05:00
parent 0adbac4943
commit 8727dc8e95
4 changed files with 16 additions and 1 deletions

View File

@@ -34,6 +34,7 @@ class SelfRef(models.Model):
null=True, blank=True,
related_name='+',
)
article = models.ForeignKey(Article, models.SET_NULL, null=True, blank=True)
def __str__(self):
# This method intentionally doesn't work for all cases - part