Chatwoot/db/migrate/20200222143259_create_agent_bot_inboxes.rb
Pranav Raj S b2d5cc7b05
Feature: Introduce bots (#545)
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
Co-authored-by: Sojan Jose <sojan@pepalo.com>
2020-03-06 01:43:12 +05:30

11 lines
245 B
Ruby

class CreateAgentBotInboxes < ActiveRecord::Migration[6.0]
def change
create_table :agent_bot_inboxes do |t|
t.integer :inbox_id
t.integer :agent_bot_id
t.integer :status, default: 0
t.timestamps
end
end
end