Chatwoot/db/migrate/20200222143259_create_agent_bot_inboxes.rb

12 lines
245 B
Ruby
Raw Normal View History

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