From bb2ca9fe6cdd490526b44b30f207c8f743bfaa84 Mon Sep 17 00:00:00 2001 From: Anubhav Joshi Date: Sun, 2 Mar 2014 00:36:15 +0530 Subject: Fixed #22172 -- Allowed index_together to be a single list (rather than list of lists).. Thanks EmilStenstrom for the suggestion. --- tests/migrations/test_state.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/migrations') diff --git a/tests/migrations/test_state.py b/tests/migrations/test_state.py index 5c71376179..187b06b94a 100644 --- a/tests/migrations/test_state.py +++ b/tests/migrations/test_state.py @@ -25,6 +25,7 @@ class StateTests(TestCase): app_label = "migrations" apps = new_apps unique_together = ["name", "bio"] + index_together = ["bio", "age"] class AuthorProxy(Author): class Meta: @@ -63,7 +64,7 @@ class StateTests(TestCase): self.assertEqual(author_state.fields[1][1].max_length, 255) self.assertEqual(author_state.fields[2][1].null, False) self.assertEqual(author_state.fields[3][1].null, True) - self.assertEqual(author_state.options, {"unique_together": set([("name", "bio")])}) + self.assertEqual(author_state.options, {"unique_together": set([("name", "bio")]), "index_together": set([("bio", "age")])}) self.assertEqual(author_state.bases, (models.Model, )) self.assertEqual(book_state.app_label, "migrations") -- cgit v1.3