ignore
Last updated: January 21, 2026
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
loading
loading
databaseChangeLog:
- changeSet:
author: adrian
id: 1
ignore: true
changes:
- createTable:
tableName: person
columns:
- column:
name: name
type: varchar(255)
loading