Reputation: 11733
Is there anyway in Liquibase with MySQL to generate a changelog based on multiple schemas?
Upvotes: 1
Views: 559
Reputation: 9016
Not directly. You would have to run it once for each schema and then combine the files. If you use the XML changelog format you could combine them using the liquibase include tag
Each changelog would also need to be explicit about the names of everything so that liquibase generates fully qualified names.
Upvotes: 1