<?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">
            <![CDATA[
                UPDATE product_video SET imprint = "Espacial / Zé Amaro", c_line_copyright_holder = "Espacial / Zé Amaro", p_line_copyright_holder = "Espacial / Zé Amaro"
                WHERE release_id IN (3332154, 3494153, 4221205, 4485400, 4509303);;

                UPDATE product_video SET imprint = "EFB Prod", c_line_copyright_holder = "EFB Prod", p_line_copyright_holder = "EFB Prod"
                WHERE release_id IN (4219981, 4511107, 4511112, 4511116, 4511120, 4511126, 4511131, 4511137, 4511139, 4511146, 4511150, 4512169, 4512177, 4512182, 4512185, 4512187, 4512203, 4512205, 4512207, 4512210, 4512345);;
            ]]>
        </sql>
        <rollback>
            <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
                <![CDATA[
                    UPDATE product_video SET imprint = "ZAM", c_line_copyright_holder = "ZAM", p_line_copyright_holder = "ZAM"
                    WHERE release_id IN (3332154, 3494153, 4221205, 4485400, 4509303);;

                    UPDATE product_video SET imprint = "Quim Barreiros", c_line_copyright_holder = "Quim Barreiros", p_line_copyright_holder = "Quim Barreiros"
                    WHERE release_id IN (4219981, 4511107, 4511112, 4511116, 4511120, 4511126, 4511131, 4511137, 4511139, 4511146, 4511150, 4512169, 4512177, 4512182, 4512185, 4512187, 4512203, 4512205, 4512207, 4512210, 4512345);;
                ]]>
            </sql>
        </rollback>
    </changeSet>
</databaseChangeLog>
