mirror of https://github.com/django/django.git
Revert "Fixed #22183: Don't make a table for M2Ms with through="
This reverts commit 1562b9896f
.
This commit is contained in:
parent
1562b9896f
commit
8ce3ea687c
|
@ -262,8 +262,7 @@ class BaseDatabaseSchemaEditor(object):
|
|||
})
|
||||
# Make M2M tables
|
||||
for field in model._meta.local_many_to_many:
|
||||
if field.rel.through._meta.auto_created:
|
||||
self.create_model(field.rel.through)
|
||||
self.create_model(field.rel.through)
|
||||
|
||||
def delete_model(self, model):
|
||||
"""
|
||||
|
|
|
@ -2032,8 +2032,6 @@ class ManyToManyField(RelatedField):
|
|||
kwargs['to'] = self.rel.to
|
||||
else:
|
||||
kwargs['to'] = "%s.%s" % (self.rel.to._meta.app_label, self.rel.to._meta.object_name)
|
||||
if getattr(self.rel, 'through', None) is not None:
|
||||
kwargs['through'] = self.rel.through
|
||||
# If swappable is True, then see if we're actually pointing to the target
|
||||
# of a swap.
|
||||
swappable_setting = self.swappable_setting
|
||||
|
|
Loading…
Reference in New Issue