reset

Note: This is a Liquibase Pro feature, so you need a Liquibase Pro License Key to use it.

The reset subcommand reverts customizations made to the check indicated in the --check-name parameter to the original configuration.

Uses

You can typically use the reset command to return to a reliable starting state when working with checks. This subcommand does not affect static checks and uncustomized dynamic checks.

When resetting a dynamic check that has been customized multiple times, the check will be reverted to default settings and not to the previous customized settings.

Note: To view a list of available checks, run liquibase checks show.

Syntax

The command is interactive, and you need to follow the CLI output messages to execute it:

  1. Run the command specifying your values:

    liquibase checks reset --check-name=TableColumnLimit

    Note: If you have a checks settings file customized for a specific environment or project, you need to pass that using the --checks-settings-file parameter. If you do not include this parameter, Liquibase uses the default settings file: liquibase.checks-settings.conf. See Use the Checks Settings Configuration File.

  2. Confirm the change. The command updates the check in the checks settings file.

Command arguments

The following table identifies parameters that are accepted or required by the reset subcommand. If the Default column states "Required," it is required to run the command successfully. If it states "Null," it is an optional command argument. Each command argument helps you narrow down the liquibase checks reset command to ensure that only very specific content is affected by the command.

Tip: For best results, specify all commands and parameters in the --kebab-case format in the CLI. If your preference is camelCase, it also works in the CLI.

Name Default Syntax Description
check-name(String) Required

CLI: --check-name

Property: liquibase.command.checks.reset.checkName

Environment Variable: LIQUIBASE_COMMAND_CHECKS_RESET_CHECK_NAME

Use this to specify the short name of the check you want to target with one of the following subcommands:

  • bulk-set
  • copy
  • customize
  • delete
  • disable
  • enable
  • reset
  • run
  • show
checks-settings-file(String) Null

CLI: --checks-settings-file

Property: liquibase.command.checks.reset.checksSettingsFile

Environment Variable: LIQUIBASE_COMMAND_CHECKS_RESET_CHECKS_SETTINGS_FILE

Specifies the checks settings file to use with subcommands. Write the relative path of the settings file that you want to read from or modify. For more information, see Use the Checks Settings Configuration File.

auto-update(String) Null

CLI: --auto-update=[on|off]

Property: liquibase.command.checks.reset.autoUpdate: [on|off]

Environment Variable: LIQUIBASE_COMMAND_CHECKS_RESET_AUTO_UPDATE=[ON|OFF]

Allows automatic backup and updating of the liquibase.checks-settings.conf file when new quality checks are available.

Default: off

Related links