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 ???