New Webinar: Govern roles, shares, and data movement in Snowflake

Learn how to govern Snowflake roles, shares, and data movement without slowing delivery. Join our live webinar on controlling drift, permissions, and audit readiness.

ignore

Last updated: September 2, 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) );