I started using flyway and its easy , but i only tried it with one Database. setting flyway.url to that database Using flyway migrate from command line to execute all the scripts. This is the current Setting.
flyway.driver=net.sourceforge.jtds.jdbc.Driver
Jdbc url to use to connect to the database
flyway.url=jdbc:jtds:sqlserver://'databaseName'
User to use to connect to the database (default: <>)
flyway.user=user
Password to use to connect to the database (default: <>)
flyway.password=user
but i am having problem with multiple databases and scripts for each DB, how can i set flyway to migrate data to all the databases ? run separate schema for each ? can i add multiple databases info to the config file? what should i set my flyway.url to in the properties file