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

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