The username that will be recorded in the schema history table as having applied the migration.
Current database user
./flyway -installedBy="ci-pipeline" clean
flyway.installedBy=ci-pipeline
FLYWAY_INSTALLED_BY=ci-pipeline
Flyway.configure()
.installedBy("ci-pipeline")
.load()
flyway {
installedBy = 'ci-pipeline'
}
<configuration>
<installedBy>ci-pipeline</installedBy>
</configuration>