Uses of Interface
migratedb.v1.core.api.resolver.ResolvedMigration
-
Packages that use ResolvedMigration Package Description migratedb.v1.core.api MigrateDbException, MigrationInfo and related classes.migratedb.v1.core.api.resolver Interfaces for Migration resolvers.migratedb.v1.core.internal.resolver Private API.migratedb.v1.core.internal.resolver.java Private API.migratedb.v1.core.internal.resolver.sql Private API.migratedb.v1.core.internal.schemahistory Private API. -
-
Uses of ResolvedMigration in migratedb.v1.core.api
Methods in migratedb.v1.core.api that return ResolvedMigration Modifier and Type Method Description @Nullable ResolvedMigrationMigrationInfo. getResolvedMigration() -
Uses of ResolvedMigration in migratedb.v1.core.api.resolver
Methods in migratedb.v1.core.api.resolver that return types with arguments of type ResolvedMigration Modifier and Type Method Description Collection<ResolvedMigration>MigrationResolver. resolveMigrations(Context context)Resolves the available migrations. -
Uses of ResolvedMigration in migratedb.v1.core.internal.resolver
Classes in migratedb.v1.core.internal.resolver that implement ResolvedMigration Modifier and Type Class Description classResolvedMigrationImplA migration available on the classpath.Methods in migratedb.v1.core.internal.resolver that return types with arguments of type ResolvedMigration Modifier and Type Method Description List<ResolvedMigration>DefaultMigrationResolver. resolveMigrations(Context context)Finds all available migrations using all migration resolvers (sql, java, ...).Methods in migratedb.v1.core.internal.resolver with parameters of type ResolvedMigration Modifier and Type Method Description intResolvedMigrationComparator. compare(ResolvedMigration o1, ResolvedMigration o2) -
Uses of ResolvedMigration in migratedb.v1.core.internal.resolver.java
Methods in migratedb.v1.core.internal.resolver.java that return ResolvedMigration Modifier and Type Method Description static ResolvedMigrationJavaMigrationResolver. newResolvedJavaMigration(JavaMigration javaMigration, Configuration configuration, SqlScriptFactory sqlScriptFactory, SqlScriptExecutorFactory sqlScriptExecutorFactory)Creates a new ResolvedJavaMigration based on aJavaMigration.Methods in migratedb.v1.core.internal.resolver.java that return types with arguments of type ResolvedMigration Modifier and Type Method Description List<ResolvedMigration>FixedJavaMigrationResolver. resolveMigrations(Context context)List<ResolvedMigration>JavaMigrationResolver. resolveMigrations(Context context) -
Uses of ResolvedMigration in migratedb.v1.core.internal.resolver.sql
Methods in migratedb.v1.core.internal.resolver.sql that return types with arguments of type ResolvedMigration Modifier and Type Method Description List<ResolvedMigration>SqlMigrationResolver. resolveMigrations(Context context) -
Uses of ResolvedMigration in migratedb.v1.core.internal.schemahistory
Methods in migratedb.v1.core.internal.schemahistory with parameters of type ResolvedMigration Modifier and Type Method Description abstract voidSchemaHistory. update(AppliedMigration appliedMigration, ResolvedMigration resolvedMigration)Updates this applied migration to match this resolved migration.
-