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:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
<changeSet id="changeRollback" author="nvoxland">
<createTable tableName="changeRollback1">
<column name="id" type="int"/>
</createTable>
<rollback>
drop table changeRollback1;
</rollback>
</changeSet>
</databaseChangeLog>
What is command for ROLLBACK ??
java -jar liquibase.jar --changeLogFile=changelog.xml rollback
<> what is the TAG ???