Adds the sla policy association to the conversation Fixes: https://linear.app/chatwoot/issue/CW-1615/applying-an-sla-to-the-conversation
6 lines
143 B
Ruby
6 lines
143 B
Ruby
class AddSlaPolicyToConversations < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :conversations, :sla_policy_id, :bigint
|
|
end
|
|
end
|