stop

The stop Change Type stops Liquibase execution with a message. Mainly useful for debugging and stepping through a changelog.

Available attributes

Name Description Required for Supports
message

Message to send to output

all

Examples

<databaseChangeLog
    xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
    xmlns:pro="http://www.liquibase.org/xml/ns/pro"
    xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
        http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd
        http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd
        http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-latest.xsd">

    <changeSet  author="liquibase-docs"  id="stop-example">  
        <stop>What just happened???</stop>  
    </changeSet>

</databaseChangeLog>
databaseChangeLog:
-  changeSet:
    id:  stop-example
    author:  liquibase-docs
    changes:
    -  stop:
        message:  What just happened???
{
    "databaseChangeLog": [
        {
            "changeSet": {
                "id": "stop-example",
                "author": "liquibase-docs",
                "changes": [
                    {
                        "stop": {
                            "message": "What just happened???"
                        }
                    }
                ]
            }
        }
    ]
}

Database support

Database Notes Auto Rollback
DB2/LUW Supported No
DB2/z Supported No
Derby Supported No
Firebird Supported No
H2 Supported No
HyperSQL Supported No
INGRES Supported No
Informix Supported No
MariaDB Supported No
MySQL Supported No
Oracle Supported No
PostgreSQL Supported No
Snowflake Supported No
SQL Server Supported No
SQLite Supported No
Sybase Supported No
Sybase Anywhere Supported No