Drops an existing table
Name | Description |
---|---|
cascadeConstraints | booleanAdd the `CASCADE CONSTRAINTS` to the statement |
catalogName | Name of the catalog@ v3.0E.g. 'cat' |
schemaName | Name of the schemaE.g. 'public' |
tableName | Name of the table to dropE.g. 'person' |
<changeSet author="liquibase-docs" id="dropTable-example">
<dropTable cascadeConstraints="true"
catalogName="cat"
schemaName="public"
tableName="person"/>
</changeSet>
changeSet:
id: dropTable-example
author: liquibase-docs
changes:
- dropTable:
cascadeConstraints: true
catalogName: cat
schemaName: public
tableName: person
{
"changeSet": {
"id": "dropTable-example",
"author": "liquibase-docs",
"changes": [
{
"dropTable": {
"cascadeConstraints": true,
"catalogName": "cat",
"schemaName": "public",
"tableName": "person"
}
}]
}
}
DROP TABLE cat.person;
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 |