Is flyway suitable for implementation in an application that will support multiple databases. That is, we don't know what our customers are using, can be either MySQL, Postgres or Oracle. Can we still use flyway to migrate the database in case of new versions of the application?

link|improve this question
feedback

1 Answer

if your question is: does Flyway provide a DDL abstraction layer across the databases it supports, the answer is no.

This was a conscious design decision, to make sure the full power of the underlying database is available and not just the smallest common denominator supported by the migration tool.

For your use case, you could either provide different migration scripts for the different databases. They should be very similar though.

If you do not which to potentially duplicate the migration scripts and can live with the smallest common denominator approach, have a look at LiquiBase which might be a better fit for your usecase (if you can live with the XML)

link|improve this answer
Axel, If the same migration script is provided for different databases, how can the selection of the database to use be done? Is sth like V1__ORACLE_InitalVersion.sql and V1__MSSQL_InitialVersion.sql possible? – StefanR Mar 26 at 15:17
1  
One possibility might be to configure flyway.baseDir depending on your environment with one directory for SQL Server migrations and one for the Oracle ones. – Axel Fontaine Mar 27 at 23:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.