Chatwoot/db/migrate/20171014113353_add_chat_channel_to_contact.rb

6 lines
133 B
Ruby
Raw Normal View History

class AddChatChannelToContact < ActiveRecord::Migration[5.0]
def change
add_column :contacts, :chat_channel, :string
end
end