문제

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!

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top