Chatwoot/db/migrate/20200222143100_create_agent_bots.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

12 lines
259 B
Ruby

class CreateAgentBots < ActiveRecord::Migration[6.0]
def change
create_table :agent_bots do |t|
t.string :name
t.string :description
t.string :outgoing_url
t.string :auth_token, unique: true
t.timestamps
end
end
end