<?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="rkhandeparkar">
        <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
        <![CDATA[
            INSERT INTO `canned_response`
            (`id`, `category_id`, `keyword`, `review_context`, `modified_by_user_id`, `for_deletion`, `last_updated`)
            VALUES
            (134, 7, 'Producer credit', 'rejection', 'af74c4b6-3b34-4eb1-9375-2929590ff49c', 0, NOW());;

            INSERT INTO `canned_response_note`
            (`canned_response_id`, `note_keyword`, `note_text`, `language_code`, `modified_by_user_id`, `last_updated`)
            VALUES
            (134, 'Producer credit',
                'For Producer roles, credit the personnel that assisted with producing or engineering the release, rather than crediting a production company or studio.',
                'en',    'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, 'Produzenten-Credits',
                'Nenne für Produzentenrollen das Personal, das bei der Produktion oder der Tontechnik der Veröffentlichung mitgewirkt hat, anstatt eine Produktionsfirma oder ein Studio zu nennen.',
                'de',    'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, 'Crédit producteur',
                'Pour les rôles de producteur, créditez le personnel qui a contribué à la production ou à l''ingénierie de la sortie, plutôt que de créditer une société de production ou un studio.',
                'fr',    'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, 'プロデューサークレジット',
                'プロデューサーの役割については、プロダクション会社やスタジオをクレジットするのではなく、リリースの制作やエンジニアリングを支援したスタッフをクレジットしてください。',
                'ja',    'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, '프로듀서 크레딧',
                '프로듀서 역할의 경우, 제작 회사나 스튜디오에 크레딧을 지정하는 대신 릴리스 프로덕션 또는 엔지니어링을 지원한 인력에 크레딧을 지정하세요.',
                'ko',    'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, 'Crédito ao produtor',
                'Para as funções de produtor, dê crédito ao pessoal que ajudou a produzir ou na engenharia do lançamento, em vez de creditar uma empresa de produção ou estúdio.',
                'pt',    'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, 'Указание продюсера',
                'Для ролей продюсеров указывайте сотрудников, которые помогали с продюсированием или звукорежиссурой релиза, а не продюсерскую компанию или студию.',
                'ru',    'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, 'Yapımcı kredisi',
                'Yapımcı rolleri için, bir prodüksiyon şirketine veya stüdyosuna kredi vermek yerine, yayının yapımına veya mühendisliğine yardımcı olan personele kredi verin.',
                'tr',    'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, '制作人员名单',
                '对于制作人角色，请将姓名归于协助制作或工程的人员，而不是归于制作公司或工作室。',
                'zh-CN', 'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, '製作人姓名',
                '對於製作類職務，請署名實際參與製作或錄音工程的人員，而非製作公司或錄音室。',
                'zh-TW', 'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, 'Crédito del productor',
                'En el caso de los roles de Productor, da crédito al personal que ha colaborado en la producción o la ingeniería del lanzamiento, en lugar de dar crédito a una compañía productora o estudio.',
                'es',    'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW()),
            (134, 'Credito del produttore',
                'Per i ruoli di Produttore, assegna il credito al personale che ha aiutato nella produzione o nell''ingegneria del suono della pubblicazione, anziché accreditare una società di produzione o uno studio.',
                'it',    'af74c4b6-3b34-4eb1-9375-2929590ff49c', NOW());;
        ]]>
        </sql>
        <rollback>
          <sql dbms="mysql" endDelimiter=";;" splitStatements="true" stripComments="true">
          <![CDATA[
            DELETE FROM `canned_response_note` WHERE `canned_response_id` = 134;;
            DELETE FROM `canned_response` WHERE `id` = 134;;
          ]]>
          </sql>
        </rollback>
    </changeSet>
</databaseChangeLog>
