<?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="pshrivastava">
        <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
            ALTER TABLE `catalog_library`
            ADD `release_composer` TEXT COMMENT 'Name of release artist of role composer.',
            ADD `release_orchestra` TEXT COMMENT 'Name of release artist of role orchestra.',
            ADD `release_ensembles` TEXT COMMENT 'Name of release artist of role ensemble.',
            ADD `release_conductor` TEXT COMMENT 'Name of release artist of role conductor.',
            ADD `release_listening_notes` TEXT COMMENT 'Release listening notes.',
            ADD `track_listening_notes` TEXT COMMENT 'Track listening notes.';;
        </sql>
        <rollback>
            <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
                ALTER TABLE `catalog_library`
                DROP `release_composer`,
                DROP `release_orchestra`,
                DROP `release_ensembles`,
                DROP `release_conductor`,
                DROP `release_listening_notes`,
                DROP `track_listening_notes`;;
            </sql>
        </rollback>
    </changeSet>
</databaseChangeLog>
