Resolver

Description

Comma-separated list of fully qualified class names of custom MigrationResolver implementations to be used in addition to the built-in ones for resolving Migrations to apply.

You must ensure that the resolver is available on the classpath ( see Adding to the classpath).

Usage

Command line

./migratedb -resolvers="my.resolver.MigrationResolver" info

Configuration File

migratedb.resolvers=my.resolver.MigrationResolver

Environment Variable

MIGRATEDB_RESOLVERS=my.resolver.MigrationResolver

API

MigrateDb.configure()
    .resolvers("my.resolver.MigrationResolver")
    .load()