We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c960e0 commit f7d63feCopy full SHA for f7d63fe
django_mongodb/schema.py
@@ -42,9 +42,6 @@ def _create_model_indexes(self, model):
42
self._add_field_index(model, field)
43
elif self._field_should_have_unique(field):
44
self._add_field_unique(model, field)
45
- # Meta.index_together (RemovedInDjango51Warning)
46
- for field_names in model._meta.index_together:
47
- self._add_composed_index(model, field_names)
48
# Meta.unique_together
49
if model._meta.unique_together:
50
self.alter_unique_together(model, [], model._meta.unique_together)
0 commit comments