renameTable

Renames an existing table.

Available attributes

Name Description Required for Supports
catalogName

Name of the catalog

all
newTableName New name for the table all all
oldTableName Existing name of the table to rename all all
schemaName

Name of the schema

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="renameTable-example">
        <renameTable  catalogName="cat"
            newTableName="employee"
            oldTableName="person"
            schemaName="public"/>
    </changeSet>

</databaseChangeLog>
databaseChangeLog:
-  changeSet:
    id:  renameTable-example
    author:  liquibase-docs
    changes:
    -  renameTable:
        catalogName:  cat
        newTableName:  employee
        oldTableName:  person
        schemaName:  public
{
    "databaseChangeLog": [
        {
            "changeSet": {
                "id": "renameTable-example",
                "author": "liquibase-docs",
                "changes": [
                    {
                        "renameTable": {
                            "catalogName": "cat",
                            "newTableName": "employee",
                            "oldTableName": "person",
                            "schemaName": "public"
                        }
                    }
                ]
            }
        }
    ]
}
--liquibase formatted sql

--changeset liquibase-docs:renameTable-example
ALTER  TABLE  cat.person  RENAME TO  cat.employee;

Database support

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