59deffc7e3
Fixes: #3368 Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
5 lines
186 B
Ruby
5 lines
186 B
Ruby
class EnableConversationContinuity < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :channel_web_widgets, :continuity_via_email, :boolean, null: false, default: true
|
|
end
|
|
end
|