Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drop MySQL table using Liquibase

I am looking to drop a table in MySQL using Liquibase only if the table exists.

I am not able to figure out how to check if a table exists in Liquibase.

like image 955
Arpit Avatar asked May 20 '17 08:05

Arpit


2 Answers

You should use

<changeSet author="liquibase-docs" id="dropTable-example">
    <preConditions onFail="MARK_RAN"><tableExists schemaName="schemaName" tableName="tableName"/></preConditions>
    <dropTable cascadeConstraints="true"
            catalogName="cat"
            schemaName="public"
            tableName="person"/>
</changeSet>

Also, you can check this link for more <preConditions> options: http://www.liquibase.org/documentation/preconditions.html

like image 96
Lemmy Avatar answered Sep 28 '22 05:09

Lemmy


Below is the Groovy version of dropping the table with Liquibase using preConditions chack that the table exists.

changeSet(author: "author", id: "some_id_value") {
    preConditions(onFail: "MARK_RAN"){
        tableExists(tableName: "table_name")
    }

    dropTable(tableName: "table_name")
}
like image 44
Mihkel Selgal Avatar answered Sep 28 '22 05:09

Mihkel Selgal