<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="anevrekar">
        <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
            <![CDATA[
                INSERT INTO track_writer (writer_name, upc, cd, track_id, unique_track_id) VALUES
                ('Fred', 7891430187125, 1, 1, 11244659),
                ('Gustavo', 7891430187125, 1, 1, 11244659),
                ('Marco Aurélio', 7891430187125, 1, 1, 11244659),
                ('Márcia Araújo', 7891430187125, 1, 1, 11244659),
                ('Raynner Sousa', 7891430279424, 1, 1, 11996065),
                ('Bigair Dy Jaime', 7891430279424, 1, 1, 11996065);;
            ]]>
        </sql>
        <rollback>
            <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
                <![CDATA[
                    DELETE FROM track_writer WHERE unique_track_id IN (11244659, 11996065);;
                ]]>
            </sql>
        </rollback>
    </changeSet>
</databaseChangeLog>
