Uses of Class
migratedb.v1.core.api.Version
-
-
Uses of Version in migratedb.v1.core.api
Methods in migratedb.v1.core.api that return Version Modifier and Type Method Description @Nullable VersionMigrationInfo. getVersion()static VersionVersion. parse(String version)Parses a version fromversion.Methods in migratedb.v1.core.api with parameters of type Version Modifier and Type Method Description static booleanMigrationPattern. anyMatchOrEmpty(Version version, @Nullable List<MigrationPattern> patterns)intVersion. compareTo(Version o)booleanMigrationPattern. matches(@Nullable Version version, @Nullable String description)static TargetVersionTargetVersion. of(Version version)Method parameters in migratedb.v1.core.api with type arguments of type Version Modifier and Type Method Description <T> TargetVersion.OrElseGetStep<T>TargetVersion. mapVersion(Function<? super Version,? extends T> mapper)TargetVersion.OrElseDoStepTargetVersion. withVersion(Consumer<Version> action)Constructor parameters in migratedb.v1.core.api with type arguments of type Version Constructor Description OrElseGetStep(Function<? super Version,? extends T> mapper) -
Uses of Version in migratedb.v1.core.api.configuration
Methods in migratedb.v1.core.api.configuration that return Version Modifier and Type Method Description VersionConfiguration. getBaselineVersion()VersionDefaultConfiguration. getBaselineVersion()VersionFluentConfiguration. getBaselineVersion()Methods in migratedb.v1.core.api.configuration with parameters of type Version Modifier and Type Method Description FluentConfigurationFluentConfiguration. baselineVersion(Version baselineVersion)Sets the version to tag an existing schema with when executing baseline.voidDefaultConfiguration. setBaselineVersion(Version baselineVersion)Sets the version to tag an existing schema with when executing baseline.FluentConfigurationFluentConfiguration. target(Version target)Sets the target version up to which MigrateDB should consider migrations. -
Uses of Version in migratedb.v1.core.api.internal.database.base
Methods in migratedb.v1.core.api.internal.database.base that return Version Modifier and Type Method Description VersionDatabase. getVersion() -
Uses of Version in migratedb.v1.core.api.internal.resource
Methods in migratedb.v1.core.api.internal.resource that return Version Modifier and Type Method Description @Nullable VersionResourceName. getVersion()The version of the resource (eg. "1.2.3" for versioned migrations), or null for non-versioned resources -
Uses of Version in migratedb.v1.core.api.internal.schemahistory
Methods in migratedb.v1.core.api.internal.schemahistory that return Version Modifier and Type Method Description @Nullable VersionAppliedMigration. getVersion()Constructors in migratedb.v1.core.api.internal.schemahistory with parameters of type Version Constructor Description AppliedMigration(int installedRank, @Nullable Version version, String description, MigrationType type, String script, @Nullable Checksum checksum, Timestamp installedOn, String installedBy, int executionTime, boolean success)Creates a new applied migration. -
Uses of Version in migratedb.v1.core.api.migration
Methods in migratedb.v1.core.api.migration that return Version Modifier and Type Method Description VersionBaseJavaMigration. getVersion()@Nullable VersionJavaMigration. getVersion() -
Uses of Version in migratedb.v1.core.api.resolver
Methods in migratedb.v1.core.api.resolver that return Version Modifier and Type Method Description VersionResolvedMigration. getVersion() -
Uses of Version in migratedb.v1.core.internal.command
Constructors in migratedb.v1.core.internal.command with parameters of type Version Constructor Description DbBaseline(SchemaHistory schemaHistory, Version baselineVersion, String baselineDescription, CallbackExecutor callbackExecutor, Database database)Creates a new DbBaseline. -
Uses of Version in migratedb.v1.core.internal.database.base
Methods in migratedb.v1.core.internal.database.base that return Version Modifier and Type Method Description protected VersionBaseDatabase. determineVersion()VersionBaseDatabase. getVersion()Methods in migratedb.v1.core.internal.database.base with parameters of type Version Modifier and Type Method Description protected StringBaseDatabase. computeVersionDisplayName(Version version)Compute the user-friendly display name for this database version. -
Uses of Version in migratedb.v1.core.internal.database.cockroachdb
Methods in migratedb.v1.core.internal.database.cockroachdb that return Version Modifier and Type Method Description protected VersionCockroachDBDatabase. determineVersion() -
Uses of Version in migratedb.v1.core.internal.database.h2
Methods in migratedb.v1.core.internal.database.h2 that return Version Modifier and Type Method Description protected VersionH2Database. determineVersion() -
Uses of Version in migratedb.v1.core.internal.database.ignite.thin
Methods in migratedb.v1.core.internal.database.ignite.thin that return Version Modifier and Type Method Description protected VersionIgniteThinDatabase. determineVersion() -
Uses of Version in migratedb.v1.core.internal.database.mysql
Methods in migratedb.v1.core.internal.database.mysql that return Version Modifier and Type Method Description protected VersionMySQLDatabase. determineVersion() -
Uses of Version in migratedb.v1.core.internal.database.sqlserver
Methods in migratedb.v1.core.internal.database.sqlserver with parameters of type Version Modifier and Type Method Description protected StringSQLServerDatabase. computeVersionDisplayName(Version version) -
Uses of Version in migratedb.v1.core.internal.database.sqlserver.synapse
Methods in migratedb.v1.core.internal.database.sqlserver.synapse with parameters of type Version Modifier and Type Method Description protected StringSynapseDatabase. computeVersionDisplayName(Version version) -
Uses of Version in migratedb.v1.core.internal.resolver
Fields in migratedb.v1.core.internal.resolver declared as Version Modifier and Type Field Description @Nullable VersionMigrationInfoHelper.VersionAndDescription. versionMethods in migratedb.v1.core.internal.resolver that return Version Modifier and Type Method Description VersionResolvedMigrationImpl. getVersion()Constructors in migratedb.v1.core.internal.resolver with parameters of type Version Constructor Description ResolvedMigrationImpl(Version version, String description, String script, Checksum checksum, Checksum equivalentChecksum, MigrationType type, String locationDescription, MigrationExecutor executor)VersionAndDescription(@Nullable Version version, String description) -
Uses of Version in migratedb.v1.core.internal.schemahistory
Methods in migratedb.v1.core.internal.schemahistory with parameters of type Version Modifier and Type Method Description abstract voidSchemaHistory. addAppliedMigration(int installedRank, Version version, String description, MigrationType type, String script, @Nullable Checksum checksum, int executionTime, boolean success)voidSchemaHistory. addAppliedMigration(Version version, String description, MigrationType type, String script, @Nullable Checksum checksum, int executionTime, boolean success)Records a new applied migration.
-