1
0
mirror of https://github.com/django/django.git synced 2025-04-19 06:44:36 +00:00

[1.7.x] Make detect_soft_applied exit correctly on non-create migrations

This commit is contained in:
Andrew Godwin 2014-07-29 09:19:25 -07:00
parent dcedc453a2
commit 053af1422a

View File

@ -144,6 +144,8 @@ class MigrationExecutor(object):
if model._meta.db_table not in self.connection.introspection.get_table_list(self.connection.cursor()):
return False
found_create_migration = True
else:
return False
# If we get this far and we found at least one CreateModel migration,
# the migration is considered implicitly applied.
return found_create_migration