feat: Add AgentBot APIs (#2323)

This commit is contained in:
Sojan Jose
2021-06-01 22:34:25 +05:30
committed by GitHub
parent 9d16e52e33
commit 22965be6dc
31 changed files with 552 additions and 67 deletions

View File

@@ -0,0 +1,6 @@
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