stop
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 |

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

...
- changeSet:
id: stop-example
author: liquibase-docs
changes:
- stop:
message: What just happened???
...

...
{
"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 |