ignore

Last published July 28, 2025

The ignore attribute is a Boolean that tells Liquibase to treat a particular changeset as if it does not exist. The default value is false.

Uses

The ignore attribute is useful if you want to make a database deployment, but want to exclude certain changesets from the deployment. For example, you may have a changeset that should not be executed during an update, but you want to keep the changeset in the changelog for tracking purposes.

ignore

--liquibase formatted sql --changeset adrian:1 ignore:true create table person ( name varchar(255) );