1
0
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:
Claude Paroz 2014-12-23 19:01:03 +01:00
parent 90720d549a
commit 750dbb1133

View File

@ -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