John Ament
John Ament

Reputation: 11733

Liquibase, MySQL and multiple schemas

Is there anyway in Liquibase with MySQL to generate a changelog based on multiple schemas?

Upvotes: 1

Views: 559

Answers (1)

SteveDonie
SteveDonie

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

Related Questions