Interface FlywayMigrationStrategy
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Strategy used to initialize
Flyway
migration. Custom implementations may be
registered as a @Bean
to override the default migration behavior.- Since:
- 1.3.0
- Author:
- Andreas Ahlenstorf, Phillip Webb
-
Method Summary
Modifier and TypeMethodDescriptionvoid
migrate
(org.flywaydb.core.Flyway flyway) Trigger flyway migration.
-
Method Details
-
migrate
void migrate(org.flywaydb.core.Flyway flyway) Trigger flyway migration.- Parameters:
flyway
- the flyway instance
-