Uses of Class
org.flywaydb.core.api.MigrationVersion
-
Packages that use MigrationVersion Package Description org.flywaydb.core The main Flyway package and for most users, the only one they'll ever need to know about.org.flywaydb.core.api FlywayException, MigrationInfo and related classes.org.flywaydb.core.api.configuration Interfaces for Flyway configuration injection.org.flywaydb.core.api.migration Interfaces for Migration implementors.org.flywaydb.core.api.resolver Interfaces for Migration resolvers. -
-
Uses of MigrationVersion in org.flywaydb.core
Methods in org.flywaydb.core that return MigrationVersion Modifier and Type Method Description MigrationVersionFlyway. getBaselineVersion()Deprecated.Direct configuration retrieval from the Flyway object has been deprecated and will be removed in Flyway 6.0.MigrationVersionFlyway. getTarget()Deprecated.Direct configuration retrieval from the Flyway object has been deprecated and will be removed in Flyway 6.0.Methods in org.flywaydb.core with parameters of type MigrationVersion Modifier and Type Method Description voidFlyway. setBaselineVersion(MigrationVersion baselineVersion)Deprecated.Direct configuration of the Flyway object has been deprecated and will be removed in Flyway 6.0.voidFlyway. setTarget(MigrationVersion target)Deprecated.Direct configuration of the Flyway object has been deprecated and will be removed in Flyway 6.0. -
Uses of MigrationVersion in org.flywaydb.core.api
Fields in org.flywaydb.core.api declared as MigrationVersion Modifier and Type Field Description static MigrationVersionMigrationVersion. CURRENTCurrent version.static MigrationVersionMigrationVersion. EMPTYVersion for an empty schema.static MigrationVersionMigrationVersion. LATESTLatest version.Methods in org.flywaydb.core.api that return MigrationVersion Modifier and Type Method Description static MigrationVersionMigrationVersion. fromVersion(String version)Factory for creating a MigrationVersion from a version StringMigrationVersionMigrationInfo. getVersion()Methods in org.flywaydb.core.api with parameters of type MigrationVersion Modifier and Type Method Description intMigrationVersion. compareTo(MigrationVersion o) -
Uses of MigrationVersion in org.flywaydb.core.api.configuration
Methods in org.flywaydb.core.api.configuration that return MigrationVersion Modifier and Type Method Description MigrationVersionClassicConfiguration. getBaselineVersion()MigrationVersionConfiguration. getBaselineVersion()Retrieves the version to tag an existing schema with when executing baseline.MigrationVersionFluentConfiguration. getBaselineVersion()MigrationVersionClassicConfiguration. getTarget()MigrationVersionConfiguration. getTarget()Retrieves the target version up to which Flyway should consider migrations.MigrationVersionFluentConfiguration. getTarget()Methods in org.flywaydb.core.api.configuration with parameters of type MigrationVersion Modifier and Type Method Description FluentConfigurationFluentConfiguration. baselineVersion(MigrationVersion baselineVersion)Sets the version to tag an existing schema with when executing baseline.voidClassicConfiguration. setBaselineVersion(MigrationVersion baselineVersion)Sets the version to tag an existing schema with when executing baseline.voidClassicConfiguration. setTarget(MigrationVersion target)Sets the target version up to which Flyway should consider migrations.FluentConfigurationFluentConfiguration. target(MigrationVersion target)Sets the target version up to which Flyway should consider migrations. -
Uses of MigrationVersion in org.flywaydb.core.api.migration
Methods in org.flywaydb.core.api.migration that return MigrationVersion Modifier and Type Method Description MigrationVersionBaseJavaMigration. getVersion()MigrationVersionJavaMigration. getVersion()MigrationVersionMigrationInfoProvider. getVersion()Deprecated.Returns the version after the migration is complete. -
Uses of MigrationVersion in org.flywaydb.core.api.resolver
Methods in org.flywaydb.core.api.resolver that return MigrationVersion Modifier and Type Method Description MigrationVersionResolvedMigration. getVersion()
-