Uses of Interface
org.flywaydb.core.api.MigrationInfo
-
Packages that use MigrationInfo Package Description org.flywaydb.core.api FlywayException, MigrationInfo and related classes.org.flywaydb.core.api.callback Interfaces for Flyway lifecycle callbacks. -
-
Uses of MigrationInfo in org.flywaydb.core.api
Methods in org.flywaydb.core.api that return MigrationInfo Modifier and Type Method Description MigrationInfo[]MigrationInfoService. all()Retrieves the full set of infos about applied, current and future migrations.MigrationInfo[]MigrationInfoService. applied()Retrieves the full set of infos about the migrations applied to the DB.MigrationInfoMigrationInfoService. current()Retrieves the information of the current applied migration, if any.MigrationInfo[]MigrationInfoService. pending()Retrieves the full set of infos about pending migrations, available locally, but not yet applied to the DB. -
Uses of MigrationInfo in org.flywaydb.core.api.callback
Methods in org.flywaydb.core.api.callback that return MigrationInfo Modifier and Type Method Description MigrationInfoContext. getMigrationInfo()Methods in org.flywaydb.core.api.callback with parameters of type MigrationInfo Modifier and Type Method Description voidBaseFlywayCallback. afterEachMigrate(Connection connection, MigrationInfo info)Deprecated.voidFlywayCallback. afterEachMigrate(Connection connection, MigrationInfo info)Deprecated.UseCallbackinstead.voidBaseFlywayCallback. afterEachUndo(Connection connection, MigrationInfo info)Deprecated.voidFlywayCallback. afterEachUndo(Connection connection, MigrationInfo info)Deprecated.UseCallbackinstead.voidBaseFlywayCallback. beforeEachMigrate(Connection connection, MigrationInfo info)Deprecated.voidFlywayCallback. beforeEachMigrate(Connection connection, MigrationInfo info)Deprecated.UseCallbackinstead.voidBaseFlywayCallback. beforeEachUndo(Connection connection, MigrationInfo info)Deprecated.voidFlywayCallback. beforeEachUndo(Connection connection, MigrationInfo info)Deprecated.UseCallbackinstead.
-