I found this comparing databases and genrating sql script using liquibase
and I was wondering if how I can do the same with Flyway. 1.- Generating sql script from the differences between tow databases.
Thanks!
I found this comparing databases and genrating sql script using liquibase
and I was wondering if how I can do the same with Flyway. 1.- Generating sql script from the differences between tow databases.
Thanks!
There is an option if you use IntelliJ IDEA. Install JPA Buddy and follow this video:
There is no built-in functionality to do this at this point.
You can use any tool able to do database comparison and generate SQL: Oracle SQL Developer, TOAD, Squirrel SQL, etc.
Liquibase could make the diff from current database (e.g: product) and reference database (e.g: development), but unfortunately, it only works in the same database type, not cross databases with problems: Java Hibernate, Liquibase supports cross databases and SQLite?