Added comprehensive Twilio WhatsApp content template support (Phase 1)
enabling text, media, and quick reply templates with proper parameter
conversion, sync capabilities.
**Template Types Supported**
- Basic Text Templates: Simple text with variables ({{1}}, {{2}})
- Media Templates: Image/Video/Document templates with text variables
- Quick Reply Templates: Interactive button templates
Front end changes is available via #12277
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
7 lines
246 B
Ruby
7 lines
246 B
Ruby
class AddContentTemplatesToTwilioSms < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column :channel_twilio_sms, :content_templates, :jsonb, default: {}
|
|
add_column :channel_twilio_sms, :content_templates_last_updated, :datetime
|
|
end
|
|
end
|