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

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