Skip to content

Commit bf0998f

Browse files
committed
Merge branch '3.5.x'
Closes gh-46989
2 parents da2365b + efa806e commit bf0998f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

documentation/spring-boot-docs/src/docs/antora/modules/how-to/pages/data-initialization.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ To automatically run Flyway database migrations on startup, add the appropriate
101101
In-memory and file-based databases are supported by `org.flywaydb:flyway-core`.
102102
Otherwise, a database-specific module is required.
103103
For example, use `org.flywaydb:flyway-database-postgresql` with PostgreSQL and `org.flywaydb:flyway-mysql` with MySQL.
104-
See https://documentation.red-gate.com/flyway/flyway-cli-and-api/supported-databases[the Flyway Documentation] for further details.
104+
See https://documentation.red-gate.com/fd/supported-databases-and-versions-143754067.html[the Flyway Documentation] for further details.
105105

106106
Typically, migrations are scripts in the form `V<VERSION>__<NAME>.sql` (with `<VERSION>` an underscore-separated version, such as '`1`' or '`2_1`').
107107
By default, they are in a directory called `classpath:db/migration`, but you can modify that location by setting `spring.flyway.locations`.
@@ -137,7 +137,7 @@ If you need more control over the configuration, consider registering a javadoc:
137137
Spring Boot calls `Flyway.migrate()` to perform the database migration.
138138
If you would like more control, provide a javadoc:org.springframework.context.annotation.Bean[format=annotation] that implements javadoc:org.springframework.boot.autoconfigure.flyway.FlywayMigrationStrategy[].
139139

140-
Flyway supports SQL and Java https://documentation.red-gate.com/fd/callback-concept-184127466.html[callbacks].
140+
Flyway supports SQL and Java https://documentation.red-gate.com/fd/callbacks-275218509.html[callbacks].
141141
To use SQL-based callbacks, place the callback scripts in the `classpath:db/migration` directory.
142142
To use Java-based callbacks, create one or more beans that implement javadoc:org.flywaydb.core.api.callback.Callback[].
143143
Any such beans are automatically registered with javadoc:org.flywaydb.core.Flyway[].

0 commit comments

Comments
 (0)