cirandas.net

ref: master

db/migrate/20150122165042_change_address_type_to_text_in_external_feed.rb


1
2
3
4
5
6
7
8
9
class ChangeAddressTypeToTextInExternalFeed < ActiveRecord::Migration
  def up
    change_column :external_feeds, :address, :text
  end

  def down
    change_column :external_feeds, :address, :string
  end
end