aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/to_copy_with_name_collision/1_people_have_hobbies.rb
blob: 8f81805fe1e36f33427f28579f46a61aa19378ec (plain) (blame)
1
2
3
4
5
6
7
8
9
class PeopleHaveLastNames < ActiveRecord::Migration::Current
  def self.up
    add_column "people", "hobbies", :string
  end

  def self.down
    remove_column "people", "hobbies"
  end
end