MigrationCallback typedef

MigrationCallback = Future<void> Function(DatabaseConnection connection, SchemaManager schemaManager)

Callback type for manual migrations

Implementation

typedef MigrationCallback =
    Future<void> Function(
      DatabaseConnection connection,
      SchemaManager schemaManager,
    );