You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to run flywayMigrate on a different database as opposed to the once that I have already configured in my build.sbt
For that, I'm trying to pass cli arguments in sbt shell like so, flyway -url="jdbc:postgresql://someserver:1234/testdb" -driver="org.postgresql.Driver" -username="postgres" -password="abcd" migrate
OR flyway -configFiles=path/to/myAlternativeConfig.conf migrate
I'm trying to run flywayMigrate on a different database as opposed to the once that I have already configured in my build.sbt
For that, I'm trying to pass cli arguments in sbt shell like so,
flyway -url="jdbc:postgresql://someserver:1234/testdb" -driver="org.postgresql.Driver" -username="postgres" -password="abcd" migrate
OR
flyway -configFiles=path/to/myAlternativeConfig.conf migrate
But looks like sbt doesn't take cli arguments dynamically this way: https://flywaydb.org/documentation/commandline/#command-line-arguments
Can someone help me with this?
The text was updated successfully, but these errors were encountered: