Commit 2202e3f7 authored by Andrew Godwin's avatar Andrew Godwin
Browse files

Fix index_together test

parent dbd3e775
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -488,7 +488,7 @@ class SchemaTests(TransactionTestCase):
        new_new_field = SlugField(unique=True)
        new_new_field.set_attributes_from_name("slug")
        with connection.schema_editor() as editor:
            editor.alter_unique_together(
            editor.alter_index_together(
                Tag,
                [("slug", "title")],
                [],