mirror of
https://github.com/django/django.git
synced 2025-03-23 15:50:45 +00:00
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):
|
||||
parent = models.ManyToManyField("self", blank=True, null=True)
|
||||
parent = models.ManyToManyField("self", blank=True)
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
|
Loading…
x
Reference in New Issue
Block a user