diff --git a/app/classes/shared/migration.py b/app/classes/shared/migration.py index c840e257..8f081982 100644 --- a/app/classes/shared/migration.py +++ b/app/classes/shared/migration.py @@ -372,9 +372,10 @@ class MigrationManager(object): Create migrator """ migrator = Migrator(self.database) - # Removing the up_one to prevent running all migrations - # each time we got a new one. It's handled by migration.up() function. - #for name in self.done: + # Removing the up_one to prevent running all + # migrations each time we got a new one. + # It's handled by migration.up() function. + # for name in self.done: # self.up_one(name, migrator, True) return migrator