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

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