runManual method
Run a callback with access to connection and schema manager (not tracked)
Implementation
Future<void> runManual(MigrationCallback callback) async {
final schemaManager = SchemaManager(connection);
await callback(connection, schemaManager);
}