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

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