Drop MySQL table using Liquibase
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