From 2202e3f7d3b3855d59d87c3865982f43b9370ba1 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Tue, 2 Jul 2013 12:06:26 +0100 Subject: [PATCH] Fix index_together test --- tests/schema/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/schema/tests.py b/tests/schema/tests.py index a92c3f7910..ba035f1287 100644 --- a/tests/schema/tests.py +++ b/tests/schema/tests.py @@ -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")], [],