<?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="gyonemitsu">
        <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
        <![CDATA[
            UPDATE manual_adjustment SET category_id = 73 WHERE id in (
                311324, 311327, 311321, 311326, 311325, 311328, 311329, 311320,
                311319, 311318, 311323, 311322, 311330, 269369, 274678, 281473,
                288051, 298305, 281475, 273978, 288053, 298306, 269368, 281471,
                288048, 298303, 269370, 281476, 288054, 298304, 298309, 269367,
                281472, 288049, 298308, 267350, 281474, 256905, 288052, 298307,
                288050, 298302, 298312, 298301, 282523, 298310,

                253032, 256903
            );;
        ]]>
        </sql>
        <rollback>
            <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
            UPDATE manual_adjustment SET category_id = 1 WHERE id in (
                311324, 311327, 311321, 311326, 311325, 311328, 311329, 311320,
                311319, 311318, 311323, 311322, 311330, 269369, 274678, 281473,
                288051, 298305, 281475, 273978, 288053, 298306, 269368, 281471,
                288048, 298303, 269370, 281476, 288054, 298304, 298309, 269367,
                281472, 288049, 298308, 267350, 281474, 256905, 288052, 298307,
                288050, 298302, 298312, 298301, 282523, 298310
            );;
            UPDATE manual_adjustment SET category_id = 58 WHERE id in (
                253032, 256903
            );;
            </sql>
        </rollback>
    </changeSet>
</databaseChangeLog>
