aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/to_copy/2_people_have_descriptions.rb
blob: b3d0b306401571f8ebf466180a8ef44c6a861f3c (plain) (blame)
1
2
3
4
5
6
7
8
9
class PeopleHaveLastNames < ActiveRecord::Migration
  def self.up
    add_column "people", "description", :text
  end

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