Package org.flywaydb.core.api.resolver
Interface ResolvedMigration
-
public interface ResolvedMigrationMigration resolved through a MigrationResolver. Can be applied against a database.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetChecksum()StringgetDescription()MigrationExecutorgetExecutor()StringgetPhysicalLocation()StringgetScript()MigrationTypegetType()MigrationVersiongetVersion()
-
-
-
Method Detail
-
getVersion
MigrationVersion getVersion()
- Returns:
- The version of the database after applying this migration.
nullfor repeatable migrations.
-
getDescription
String getDescription()
- Returns:
- The description of the migration.
-
getScript
String getScript()
- Returns:
- The name of the script to execute for this migration, relative to its base (classpath/filesystem) location.
-
getChecksum
Integer getChecksum()
- Returns:
- The checksum of the migration. Optional. Can be
nullif not unique checksum is computable.
-
getType
MigrationType getType()
- Returns:
- The type of migration (INIT, SQL, ...)
-
getPhysicalLocation
String getPhysicalLocation()
- Returns:
- The physical location of the migration on disk. Used for more precise error reporting in case of conflict.
-
getExecutor
MigrationExecutor getExecutor()
- Returns:
- The executor to run this migration.
-
-