Fix soft-apply detection of migrations with dependencies
This commit is contained in:
parent
78a2617703
commit
4b3b25104d
|
@ -85,7 +85,7 @@ class MigrationExecutor(object):
|
||||||
self.progress_callback("apply_start", migration, fake)
|
self.progress_callback("apply_start", migration, fake)
|
||||||
if not fake:
|
if not fake:
|
||||||
# Test to see if this is an already-applied initial migration
|
# Test to see if this is an already-applied initial migration
|
||||||
if not migration.dependencies and self.detect_soft_applied(migration):
|
if self.detect_soft_applied(migration):
|
||||||
fake = True
|
fake = True
|
||||||
else:
|
else:
|
||||||
# Alright, do it normally
|
# Alright, do it normally
|
||||||
|
@ -135,4 +135,6 @@ class MigrationExecutor(object):
|
||||||
model = apps.get_model(migration.app_label, operation.name)
|
model = apps.get_model(migration.app_label, operation.name)
|
||||||
if model._meta.db_table not in self.connection.introspection.get_table_list(self.connection.cursor()):
|
if model._meta.db_table not in self.connection.introspection.get_table_list(self.connection.cursor()):
|
||||||
return False
|
return False
|
||||||
|
else:
|
||||||
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in New Issue