From 8a1768432b1ec3ecfa390ac5eb70dbfb0cff59b3 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 24 Aug 2017 14:56:09 -0400 Subject: Fixed #28552 -- Dropped support for MySQL 5.5. --- tests/schema/tests.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests') diff --git a/tests/schema/tests.py b/tests/schema/tests.py index e7f47865d4..f2a96294cc 100644 --- a/tests/schema/tests.py +++ b/tests/schema/tests.py @@ -2302,8 +2302,6 @@ class SchemaTests(TransactionTestCase): Changing the primary key field name of a model with a self-referential foreign key (#26384). """ - if connection.vendor == 'mysql' and connection.mysql_version < (5, 6, 6): - self.skipTest('Skip known bug renaming primary keys on older MySQL versions (#24995).') with connection.schema_editor() as editor: editor.create_model(Node) old_field = Node._meta.get_field('node_id') -- cgit v1.3