dbclhistory-capture-extensions

--dbclhistory-capture-extensions is a global Boolean parameter that specifies whether Liquibase captures information about installed extensions in the DATABASECHANGELOGHISTORY table. It is available in Liquibase 4.27.0 and later. The default value is true.

Uses

Liquibase comes pre-installed with some common database drivers to make it easier for you to deploy changes quickly. You can also install more extensions to add more database support, such as the liquibase-mongodb extension. By default, Liquibase records the filepath and name of all Liquibase extensions you have installed in the DATABASECHANGELOGHISTORY (DBCLH) table.

However, if you want to exclude extension information from your DBCLH, you can set --dbclhistory-capture-extensions to false.

Syntax

You can set this parameter in the following ways:

Option Syntax
Liquibase properties file
liquibase.dbclhistory.captureExtensions: <true|false>
Global flow file argument (example)
stages:
  Default:
    actions:
      - type: liquibase
        command: update
        globalArgs: { dbclhistory-capture-extensions: "<true|false>" }
Global CLI parameter
liquibase
 --dbclhistory-capture-extensions=<true|false> update
 --changelog-file=example-changelog.xml

JVM system property (JAVA_OPTS Environment Variable)

JAVA_OPTS=-Dliquibase.dbclhistory.captureExtensions=<true|false>
Liquibase Environment Variables
LIQUIBASE_DBCLHISTORY_CAPTURE_EXTENSIONS=<true|false>

For more information, see Working with Command Parameters.

Related links