<?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"
        xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
        xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd
        http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
    <changeSet id="1" author="rpapat">
        <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
            USE art_relations;;

            DROP TABLE IF EXISTS `ROLLBACK_vendor_contract_ids`;;
            DROP TABLE IF EXISTS `ROLLBACK_vendor_assigned_to_ids`;;
            DROP TABLE IF EXISTS `ROLLBACK_MOV-1521_manual_adjustment`;;
            DROP TABLE IF EXISTS `ROLLBACK_MOV-1515_release_manual_adjustment`;;
            DROP TABLE IF EXISTS `ROLLBACK-manual_adjustment`;;
            DROP TABLE IF EXISTS `ROLLBACK_MOV-1515_manual_adjustment`;;
        </sql>
        <rollback>
            <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
                SELECT "No Rollback needed";;
            </sql>
        </rollback>
    </changeSet>
</databaseChangeLog>
