chatwoot-develop/db/migrate/20250822061042_add_content_templates_to_twilio_sms.rb

7 lines
246 B
Ruby
Executable File

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