Maven rollbackSQL
Last updated: November 18, 2025
The Maven rollbackSQL goal is a helper command that produces the raw SQL Liquibase would run when using the Maven rollback goal with the liquibase.rollbackCount, liquibase.rollbackTag, or liquibase.rollbackDate attributes:
liquibase.rollbackCount: Liquibase uses the raw SQL to revert any changesets between the most recent and the value you specified.
liquibase.rollbackTag: Liquibase uses the raw SQL to revert all changes made to the database after the specified tag.
liquibase.rollbackDate: Liquibase uses the raw SQL to revert all changes made to your database from today's date to the date and time you specify.
Uses
The Maven rollbackSQL is typically used to inspect the SQL Liquibase uses to revert changes associated with a tag, date, or depending on the number you specify when you run the rollback goal. It is best practice to use the rollbackSQL goal before running the rollback command to correct any issues that may arise before running the goal and avoid any potential risks.
Maven configuration
You can configure Liquibase Maven in multiple ways. You can pass arguments like <changeLogFile> in Maven directly in your pom.xml file, in a liquibase.properties file referenced in your POM, as environment variables, or as JVM system properties. To learn about each file's syntax, see Maven Properties.
For more information about the Maven configuration, see Configuring Maven.
You may want to add <migrationSqlOutputFile>specify your output file here</migrationSqlOutputFile> to your pom.xml or specify it in another valid way. This argument defines the file to output the rollback SQL script.
Running the rollbackSQL Maven goal
Running the rollbackSQL goal requires a Maven project to be implemented. Also, you can run the Maven history goal before running the goal to see all your previously executed changes.
Running the rollbackSQL Maven goal with the rollbackCount attribute
To run the rollbackSQL goal with the liquibase.rollbackCount attribute, type the following in your command prompt: mvn liquibase:rollbackSQL -Dliquibase.rollbackCount=2
Note: Enter the value you want to use in place of 2.
Running the rollbackSQL Maven goal with the rollbackTag attribute
To run the rollbackSQL goal with the liquibase.rollbackTag attribute, type the following in your command prompt: mvn liquibase:rollbackSQL -Dliquibase.rollbackTag=version1
Note: Enter the name of the tag you want to use in place of version1. Alternatively, you can specify two properties in your pom.xml file under the <properties></properties> in the <project></project> level:
<liquibase.tag>v3.2.1</liquibase.tag>
<liquibase.rollbackTag>${liquibase.tag}</liquibase.rollbackTag>
Running the rollbackSQL Maven goal with the rollbackDate attribute
To run the rollbackSQL goal with the liquibase.rollbackDate attribute, type the following in your command prompt: mvn liquibase:rollbackSQL -Dliquibase.rollbackDate=2020-11-30
Note: Enter the date you want to use in place of 2020-11-30. There are several ways to revert your changes with the liquibase.rollback-to-dateattribute. You can use YYYY-MM-DD HH:MM:SS or YYYY-MM-DD'T'HH:MM:SS formats to specify both date and time. Also, you can specify date or time only.
Attribute | Definition |
|---|---|
| Defines the number of changesets to roll back. Default value is: 1. |
| Defines the date for which you want to roll back the database. The format of the date must match either an ISO date format or that of the |
| Defines the tag for which you want to roll back the database. |
Attribute | Definition |
|---|---|
| Specifies the path to the directory where Liquibase can find your changelog file. |
| The changelog file for Liquibase to use. |
| Specifies the catalog Liquibase will use to create your changelog tables. |
| Specifies the schema Liquibase will use to create your changelog tables. |
| Boolean. Forces checksums to be cleared from the DATABASECHANGELOG table. Default value is: false. |
| Specifies which contexts Liquibase will execute, which can be separated by a comma if multiple contexts are required. If a context is not specified, then all contexts will be executed. |
| Specifies the table name to use for the DATABASECHANGELOG table. |
| Specifies the table name to use for the DATABASECHANGELOG table. |
| Specifies the database object class. |
| Specifies the default catalog name to use for the database connection. |
| Specifies the default schema name to use for the database connection. |
| Specifies the driver class name to use for the database connection. |
| Specifies the location of a JDBC connection properties file which contains properties the driver will use. |
| Deprecated. Boolean. Use an empty or null value for the password instead. Default value is: false. |
| Specifies a map-based collection of changelog properties to apply. |
| Specifies a property-based collection of changelog properties to apply. |
| Boolean. Includes a Maven project artifact in the class loader, which obtains the Liquibase properties file and changelog files. Default value is |
| Boolean. Includes the Maven test output directory in the class loader which obtains the Liquibase properties file and changelog files. Default value is |
| Specifies which labels Liquibase runs, and which can be separated by a comma if multiple labels are required or you need to designate a more complex expression. If no label is specified, then all labels are run. |
| Specifies your Liquibase Secure license key. |
| Specifies the file to output the rollback/migration SQL script to. If it exists, it will be overwritten. Default value is: |
| Boolean. Specifies whether to ignore the catalog or database name. Default value is: false. |
| Boolean. Specifies whether to ignore the schema name. Default value is: false. |
| Indicates that you want to set the character encoding of the output file during the |
| Specifies the database password for the database connection. |
| Deprecated. Boolean. Controls whether users are prompted before executing changesets to a non-local database. Default value is: true. |
| Specifies the Liquibase properties file to use for configuration, like |
| Boolean. Indicates that you want the |
| Specifies the property provider, which must be a |
| Specifies the server ID in the Maven |
| Boolean. Specifies whether to skip running Liquibase. The use of this attribute is not recommended but can be used when needed. Default value is: false. |
| When set to TRUE, suppress DBCL and DBCLH sql in the console and log. Default value is: false |
| Specifies a list of system properties you want to pass to the database. |
| Specifies the database URL you want to use to execute Liquibase. |
| Specifies the database username for the database connection. |
| Boolean. Controls the amount of output detail when you call the plugin. Default value is: false. |