aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/missing/1000_people_have_middle_names.rb
blob: 9fd495b97c89ef5200ba0d4f2f6cf617b73f4b83 (plain) (blame)
1
2
3
4
5
6
7
8
9
class PeopleHaveMiddleNames < ActiveRecord::Migration
  def self.up
    add_column "people", "middle_name", :string
  end

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