# Don't set this yourself! RegisterMigration will automatically fill
# this with stuff via decorating methods in migrations.py
+class MissingCurrentMigration(Exception): pass
+
+
MIGRATIONS = {}
self.migration_registry = migration_registry
self._sorted_migrations = None
+ def _ensure_current_migration_record(self):
+ """
+ If there isn't a database[u'app_metadata'] mediagoblin entry
+ with the 'current_migration', throw an error.
+ """
+ if self.database_current_migration() is None:
+ MissingCurrentMigration(
+ "Tried to call function which requires "
+ "'current_migration' set in database")
+
@property
def sorted_migrations(self):
"""
Note that calling this will set your migration version to the
latest version if it isn't installed to anything yet!
"""
- # If we aren't set to any version number, presume we're at the
- # latest (which means we'll do nothing here...)
- self.install_migration_version_if_missing()
+ self._ensure_current_migration_record()
db_current_migration = self.database_current_migration()
run post-migration. Takes (migration_number, migration_func)
as arguments
"""
+ # If we aren't set to any version number, presume we're at the
+ # latest (which means we'll do nothing here...)
+ self.install_migration_version_if_missing()
+
for migration_number, migration_func in self.migrations_to_run():
if pre_callback:
pre_callback(migration_number, migration_func)