Change: ‘stop’
Stops Liquibase execution with a message. Mainly useful for debugging and stepping through a changelog
Available Attributes
Name | Description |
message | Message to output when execution stopsDefault: 'Stop command in changelog file' |
<changeSet author="liquibase-docs" id="stop-example">
<stop message="What just happened???"/>
</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 |
SQL Server | Supported | No |
SQLite | Supported | No |
Sybase | Supported | No |
Sybase Anywhere | Supported | No |