Interface MigrationResolver


  • public interface MigrationResolver
    Resolves available migrations. This interface can be implemented to create custom resolvers. A custom resolver can be used to create additional types of migrations not covered by the standard resolvers (jdbc, sql, spring-jdbc). Using the skipDefaultResolvers configuration property, the built-in resolvers can also be completely replaced.
    • Method Summary

      Modifier and Type Method Description
      java.util.Collection<ResolvedMigration> resolveMigrations​(Context context)
      Resolves the available migrations.
    • Method Detail

      • resolveMigrations

        java.util.Collection<ResolvedMigration> resolveMigrations​(Context context)
        Resolves the available migrations.
        Returns:
        The available migrations.