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

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