mirror of
https://github.com/django/django.git
synced 2025-07-23 21:25:40 +00:00
Removed unneeded null param to ManyToManyField
This commit is contained in:
parent
90720d549a
commit
750dbb1133
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ class Thingy(models.Model):
|
|||
|
||||
|
||||
class M2MToSelf(models.Model):
|
||||
parent = models.ManyToManyField("self", blank=True, null=True)
|
||||
parent = models.ManyToManyField("self", blank=True)
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue