How do I enable operation reports?

Last updated: July 14, 2025

In Liquibase 4.29.0 and later, operation reports are enabled by default.

In older versions, operation reports are disabled by default. Follow this guide to enable them.

Procedure

1

Set the --license-key property using your Liquibase Pro license key.

2

Choose how often to generate reports. You can either:

Always generate reports:

  • liquibase.properties file: liquibase.reports.enabled=true

  • Environment variable: LIQUIBASE_REPORTS_ENABLED=true

Then, when you run a supported command, Liquibase always generates a report

Selectively generate reports at runtime:

  • Command line: liquibase --reports-enabled=true <command>

  • JVM system property:JAVA_OPTS="-Dliquibase.reports.enabled=true" liquibase <command>

Note: To enable or disable only a specific kind of report, such as the drift report, you can set the liquibase.command.<cmdName>.reportEnabled parameter. See the pages linked in the Report types section.

How do I enable operation reports? - Liquibase