Uses of Class
org.flywaydb.core.api.MigrationVersion
Packages that use MigrationVersion
Package
Description
FlywayException, MigrationInfo and related classes.
Interfaces for Flyway configuration injection.
Interfaces for Migration implementors.
Interfaces for Migration resolvers.
Classes for resources.
-
Uses of MigrationVersion in org.flywaydb.core.api
Fields in org.flywaydb.core.api declared as MigrationVersionModifier and TypeFieldDescriptionstatic final MigrationVersionMigrationVersion.CURRENTCurrent version.static final MigrationVersionMigrationVersion.EMPTYVersion for an empty schema.static final MigrationVersionMigrationVersion.LATESTLatest version.static final MigrationVersionMigrationVersion.NEXTNext version.Methods in org.flywaydb.core.api that return MigrationVersionModifier and TypeMethodDescriptionstatic MigrationVersionMigrationVersion.fromVersion(String version) Create a MigrationVersion from a version String.MigrationInfo.getVersion()Methods in org.flywaydb.core.api with parameters of type MigrationVersionModifier and TypeMethodDescriptionintMigrationVersion.compareTo(MigrationVersion o) booleanMigrationVersion.isNewerThan(MigrationVersion otherVersion) Convenience method for quickly checking whether this version is newer than this other version.booleanMigrationPattern.matches(MigrationVersion version, String description) -
Uses of MigrationVersion in org.flywaydb.core.api.configuration
Methods in org.flywaydb.core.api.configuration that return MigrationVersionModifier and TypeMethodDescriptionClassicConfiguration.getBaselineVersion()Configuration.getBaselineVersion()Retrieves the version to tag an existing schema with when executing baseline.FluentConfiguration.getBaselineVersion()ClassicConfiguration.getTarget()Configuration.getTarget()Gets the target version up to which Flyway should consider migrations.FluentConfiguration.getTarget()Methods in org.flywaydb.core.api.configuration with parameters of type MigrationVersionModifier and TypeMethodDescriptionFluentConfiguration.baselineVersion(MigrationVersion baselineVersion) Sets the version to tag an existing schema with when executing baseline.voidClassicConfiguration.setBaselineVersion(MigrationVersion baselineVersion) voidClassicConfiguration.setTarget(MigrationVersion target) FluentConfiguration.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 -
Uses of MigrationVersion in org.flywaydb.core.api.migration.baseline
Methods in org.flywaydb.core.api.migration.baseline with parameters of type MigrationVersionModifier and TypeMethodDescriptionorg.flywaydb.core.extensibility.AppliedMigrationBaselineAppliedMigration.create(int installedRank, MigrationVersion version, String description, String type, String script, Integer checksum, Date installedOn, String installedBy, int executionTime, boolean success) Constructors in org.flywaydb.core.api.migration.baseline with parameters of type MigrationVersionModifierConstructorDescriptionBaselineAppliedMigration(int installedRank, MigrationVersion version, String description, String type, String script, Integer checksum, Date installedOn, String installedBy, int executionTime, boolean success) BaselineResolvedMigration(MigrationVersion version, String description, String script, Integer checksum, Integer equivalentChecksum, String physicalLocation, MigrationExecutor executor, Configuration config) BaselineResolvedMigration(MigrationVersion version, String description, String script, Integer checksum, Integer equivalentChecksum, org.flywaydb.core.extensibility.MigrationType migrationType, String physicalLocation, MigrationExecutor executor, Configuration config) -
Uses of MigrationVersion in org.flywaydb.core.api.resolver
Methods in org.flywaydb.core.api.resolver that return MigrationVersion -
Uses of MigrationVersion in org.flywaydb.core.api.resource
Methods in org.flywaydb.core.api.resource that return MigrationVersionModifier and TypeMethodDescriptionLoadableResourceMetadata.version()Returns the value of theversionrecord component.Constructors in org.flywaydb.core.api.resource with parameters of type MigrationVersionModifierConstructorDescriptionLoadableResourceMetadata(MigrationVersion version, String description, String prefix, LoadableResource loadableResource, org.flywaydb.core.internal.sqlscript.SqlScriptMetadata sqlScriptMetadata, int checksum, org.flywaydb.core.extensibility.MigrationType migrationType) Creates an instance of aLoadableResourceMetadatarecord class.