From c2e419c26781b88f2b34b445f450b735267155b0 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 26 Dec 2014 15:27:11 -0500 Subject: Fixed #24054 -- Enabled sqlsequencereset for apps with migrations. --- django/core/management/commands/sqlsequencereset.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'django/core/management/commands/sqlsequencereset.py') diff --git a/django/core/management/commands/sqlsequencereset.py b/django/core/management/commands/sqlsequencereset.py index 729267bb73..690ea902a4 100644 --- a/django/core/management/commands/sqlsequencereset.py +++ b/django/core/management/commands/sqlsequencereset.py @@ -1,7 +1,6 @@ from __future__ import unicode_literals from django.core.management.base import AppCommand -from django.core.management.sql import check_for_migrations from django.db import connections, DEFAULT_DB_ALIAS @@ -20,7 +19,6 @@ class Command(AppCommand): if app_config.models_module is None: return connection = connections[options.get('database')] - check_for_migrations(app_config, connection) models = app_config.get_models(include_auto_created=True) statements = connection.ops.sequence_reset_sql(self.style, models) return '\n'.join(statements) -- cgit v1.3