Sprint 0.2 #55
| @@ -31,11 +31,10 @@ class MigrationService: | ||||
|                     # there is a table named "tableName" | ||||
|                     self._logger.trace(__name__, f"Running SQL Command: {MigrationHistory.get_select_by_id_string(migration_id)}") | ||||
|                     migration_from_db = self._db.select(MigrationHistory.get_select_by_id_string(migration_id)) | ||||
|                     self._logger.trace(__name__, str(migration_from_db)) | ||||
|                     if migration_from_db is not None and len(migration_from_db) > 0: | ||||
|                         continue | ||||
|                  | ||||
|                 self._logger.debug(__name__, f"Running Migration {migration}") | ||||
|                 self._logger.debug(__name__, f"Running Migration {migration_id}") | ||||
|                 migration_as_service: MigrationABC = self._services.get_service(migration) | ||||
|                 migration_as_service.upgrade() | ||||
|                 self._cursor.execute(MigrationHistory(migration_id).insert_string) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user