<?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="n-kumar">
        <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
            <!--drop ROLLBACK_mov1308_vendor_dms_master_restriction_03 used in MOV-1308 -->
            DROP TABLE IF EXISTS `ROLLBACK_mov1308_vendor_dms_master_restriction_03`;;
            <!--drop ROLLBACK_mov1308_vendor_dms_master_restriction_04 used in MOV-1308 -->
            DROP TABLE IF EXISTS `ROLLBACK_mov1308_vendor_dms_master_restriction_04`;;
            <!--drop rollback tables used in previous PR's -->
            DROP TABLE IF EXISTS `ROLLBACK_mov1249_vendor_dms_master_restriction_182`;;
            DROP TABLE IF EXISTS `mov1249_vendor_dms_master_restriction_182`;;
            DROP TABLE IF EXISTS `ROLLBACK_mov1249_vendor_dms_master_restriction_502`;;
            DROP TABLE IF EXISTS `mov1249_vendor_dms_master_restriction_502`;;
            DROP TABLE IF EXISTS `ROLLBACK_mov1249_vendor_dms_master_restriction_564`;;
            DROP TABLE IF EXISTS `mov1249_vendor_dms_master_restriction_564`;;
        </sql>
        <rollback>
            <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
                SELECT "There is no rollback because there won't be any record to rollback after the queries has been executed(in MOV-1308)";;
            </sql>
        </rollback>
    </changeSet>
</databaseChangeLog>
