Chatwoot/db/migrate/20170519085519_add_pic_to_inbox.rb

6 lines
130 B
Ruby
Raw Normal View History

class AddPicToInbox < ActiveRecord::Migration[5.0]
def change
add_column :inboxes, :avatar, :string, default: nil
end
end