There are a lot of useful parameters (for example, changelogCatalogName) for Maven update task: http://www.liquibase.org/documentation/maven/maven_update.html But they are not mentioned in CLI page for liquibase update: http://www.liquibase.org/documentation/command_line.html Is it possible to pass these parameters? Thanks!
相关问题
- Maven - Spring - Liquibase includeAll not work
- Pass liquibase parameters to gradle liquibase '
- Liquibase: How to disable FILENAME column check?
- Liquibase update error
- Cant run liquibase with command line
相关文章
- logging not working in liquibase 3.6.1 using logle
- Liquibase - generate script without applying chang
- Two MySQL Database on Jhipster
- How can I populate Liquibase parameter values from
- using spring boot profiles with liquibase changese
- Is there a way to generate Liquibase data in the r
- Spring Boot 1.4: Executing Method after Liquibase
- How to extend Liquibase to generate change logs wi
You can also use
liquibase --help
to return command line options as well, there may be some on there that were missed in the docs.I am working on improving consistency and feature parity between different ways to run Liquibase but there can still be some features that have not made it into all modes yet. ChangelogCatalogName and ChangelogSchemaName look like two fields that have not made it into CLI parameters yet, but you are able to specify them by system properties as -Dliquibase.catalogName=ABC and -Dliquibase.schemaName=XYZ