Reputation: 21
can flywaydb support this processing?
I know that 1,2 and 4 are possible. But what's with Point 3?
Upvotes: 2
Views: 770
Reputation: 408
No, flyway does only support forward db migrations and no reverse engineering of database. If the database is created outside of flyway then flyway does not even have any information on current state of database schema.
Unfortunately to reverse engineer a database you have to use other tools.
Upvotes: 3