<?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="ingride-n">
        <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
            <![CDATA[
               INSERT INTO `canned_response_note`
                (id, canned_response_id, note_keyword, note_text, language_code, modified_by_user_id, last_updated)
                VALUES
                (41, 41, 'Invalid Titles', 'The Product or Track Title you have entered is invalid. Titles should not contain:
                - Artist names or any other additional contributors credits;
                - File formats (for example: .wav);
                - Track numbers;
                - Version Titles (e.g. Remix, Acoustic, Edit);
                - Titles that include hyphens unless it\'s grammatically necessary;
                - Any other text that is not part of the title itself;
                - Emoji and special characters', 'en', '794821a1-048b-4f3d-93dd-213a46362e0a', NOW());;
            ]]>
        </sql>
        <rollback>
            <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
                DELETE from canned_response_note where canned_response_id = 41 and language_code = 'en';;
            </sql>
        </rollback>
    </changeSet>
</databaseChangeLog>
