Chatwoot/db/migrate/20201011152227_add_email_address_to_inbox.rb

9 lines
190 B
Ruby

class AddEmailAddressToInbox < ActiveRecord::Migration[6.0]
def up
add_column :inboxes, :email_address, :string
end
def down
remove_column(:inboxes, :email_address)
end
end