mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-17 19:45:06 +00:00
7 lines
218 B
Ruby
7 lines
218 B
Ruby
class AddAccountIdToAgentBots < ActiveRecord::Migration[6.0]
|
|
def change
|
|
remove_column :agent_bots, :hide_input_for_bot_conversations, :boolean
|
|
add_reference :agent_bots, :account, foreign_key: true
|
|
end
|
|
end
|