omnichannel-deploy/database/migrations/030_remove_opening_templates.sql

19 lines
606 B
MySQL
Raw Permalink Normal View History

-- Migration 030: Remove templates de abertura sem vinculo com a Meta
-- A migration 011 re-insere esses templates em todo deploy via ON CONFLICT DO UPDATE.
-- Este arquivo garante que sejam removidos caso nao estejam vinculados a Meta.
DELETE FROM whatsapp_templates
WHERE name IN (
'abertura_atendimento_padrao',
'abertura_retorno_contato',
'abertura_suporte',
'abertura_financeiro',
'abertura_comercial',
'abertura_confirmacao_dados',
'abertura_contato_agendado',
'abertura_pos_atendimento',
'abertura_aviso_importante',
'abertura_contato_inicial'
)
AND meta_template_name IS NULL;