summaryrefslogtreecommitdiff
path: root/db/migrate/20111106162141_add_phoneable_to_phone.rb
blob: 7b60ac651ffc86c97e3a1f7c2353697f8fca1ad3 (plain)
1
2
3
4
5
6
class AddPhoneableToPhone < ActiveRecord::Migration
  def change
    add_column :phones, :phoneable_type, :string
    add_column :phones, :phoneable_id, :integer
  end
end