what is the TAG to rollback?? How to rollback a Create Table ??

Hi Guys , I need to rollback the create table bellow …

It was created with the command java -jar liquibase.jar --changeLogFile=changelog.xml update

<?xml version="1.0" encoding="UTF-8"?>

<databaseChangeLog

xmlns=“http://www.liquibase.org/xml/ns/dbchangelog”

xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance”

xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog

     <a href='http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">' target='_blank'>http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd"></a></div>
<changeSet id="changeRollback" author="nvoxland"></div>

    <createTable tableName="changeRollback1"></div>

        <column name="id" type="int"/></div>

    </createTable></div>

    <rollback></div>

        drop table changeRollback1;</div>

    </rollback></div>

</changeSet></div>

What is command for ROLLBACK ??

java -jar liquibase.jar --changeLogFile=changelog.xml rollback <> what is the TAG ???

Please read the docs before asking questions to not waste other peoples time.

http://www.liquibase.org/documentation/changes/create_table.html

You will not even understand the answer if you don’t.

As you can see the create table change has auto rollback. That’s one of your questions.

As for the other, the tag is the tag you created with tagDatabase change (http://www.liquibase.org/documentation/changes/tag_database.html) or tag command in command line (http://www.liquibase.org/documentation/command_line.html).