Does Flyway support InterSystems Cache Database migration?

84 Views Asked by At

Flyway DB migration tool supports wide range of databases. I'm wondering whether Flyway supports InterSystems Cache Database to handle basic DB migration tasks? Though it's not explicitly mentioned in flyway documentation, since flyway uses common JDBC drivers and Plain Old SQL migration scripts technically (in high level) it should support basic DB migration of any SQL supported databases. Thought of reach out to experts before giving its a shot.

1

There are 1 best solutions below

0
Julia Hayward On BEST ANSWER

No (at least not at this time). It is perfectly capable of being extended to support any database with JDBC connections and SQL migration scripts, and it is possible to fork the community codebase and add support for another database without too much work. See here: https://flywaydb.org/documentation/contribute/contributingDatabaseSupport - which also explains why not every database will be supported in future.