b2d5cc7b05
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
11 lines
245 B
Ruby
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
|