mirror of https://github.com/django/django.git
Removed unneeded null param to ManyToManyField
This commit is contained in:
parent
90720d549a
commit
750dbb1133
|
@ -249,7 +249,7 @@ class Thingy(models.Model):
|
||||||
|
|
||||||
|
|
||||||
class M2MToSelf(models.Model):
|
class M2MToSelf(models.Model):
|
||||||
parent = models.ManyToManyField("self", blank=True, null=True)
|
parent = models.ManyToManyField("self", blank=True)
|
||||||
|
|
||||||
|
|
||||||
@python_2_unicode_compatible
|
@python_2_unicode_compatible
|
||||||
|
|
Loading…
Reference in New Issue