mirror of
https://github.com/django/django.git
synced 2025-12-04 00:55:36 +00:00
Fixed #25715 -- Fixed Model.refresh_from_db() with ForeignKey w/on_delete=SET_NULL.
This commit is contained in:
parent
ccc8f67b77
commit
54e2e688e1
4 changed files with 16 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue