1
0
mirror of https://github.com/django/django.git synced 2024-12-29 04:26:28 +00:00

Remove debug prints

This commit is contained in:
Andrew Godwin 2013-05-30 18:25:57 +01:00
parent 8d81c6bc82
commit 7609e0b42e

View File

@ -49,20 +49,16 @@ class MigrationExecutor(object):
"""
Runs a migration forwards.
"""
print "Applying %s" % migration
with self.connection.schema_editor() as schema_editor:
project_state = self.loader.graph.project_state((migration.app_label, migration.name), at_end=False)
migration.apply(project_state, schema_editor)
self.recorder.record_applied(migration.app_label, migration.name)
print "Finished %s" % migration
def unapply_migration(self, migration):
"""
Runs a migration backwards.
"""
print "Unapplying %s" % migration
with self.connection.schema_editor() as schema_editor:
project_state = self.loader.graph.project_state((migration.app_label, migration.name), at_end=False)
migration.unapply(project_state, schema_editor)
self.recorder.record_unapplied(migration.app_label, migration.name)
print "Finished %s" % migration