<?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="100" author="jian">
        <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
            SET foreign_key_checks = 0;;
            DROP TABLE IF EXISTS vector_perf_store_profile_summary;;

            DROP TABLE IF EXISTS vector_node;;

            DROP TABLE IF EXISTS vector_api_keys;;

            DROP TABLE IF EXISTS vector_service;;

            DROP TABLE IF EXISTS vector_delivery_summary_log;;

            DROP TABLE IF EXISTS vector_process;;

            DROP TABLE IF EXISTS vector_store_state;;

            DROP TABLE IF EXISTS vector_perf_store_summary;;

            DROP TABLE IF EXISTS vector_perf_error_summary;;
 
            DROP TABLE IF EXISTS vector_delivery;;

            DROP TABLE IF EXISTS vector_perf_summary;;

            DROP TABLE IF EXISTS vector_store_state_snapshot;;

            DROP TABLE IF EXISTS vector_perf_job_summary;;

            DROP TABLE IF EXISTS vector_store_state_history;;

            DROP TABLE IF EXISTS vector_perf_job_error_summary;;

            DROP TABLE IF EXISTS vector_encoding_job_history;;

            DROP TABLE IF EXISTS vector_job_state_history;;

            DROP TABLE IF EXISTS vector_perf_error;;

            DROP TABLE IF EXISTS vector_encoding_job_remove;;

            DROP TABLE IF EXISTS vector_encoding_job_dms_remove;;

            DROP TABLE IF EXISTS vector_job_state_remove;;

            DROP TABLE IF EXISTS vector_perf_end_remove;;

            DROP TABLE IF EXISTS vector_perf_start_remove;;

            DROP TABLE IF EXISTS vector_package_remove;;
            SET foreign_key_checks = 1;;
        </sql>
    </changeSet>
</databaseChangeLog>
