aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/interleaved/pass_2/1_interleaved_people_have_last_names.rb
blob: c6c94213a0afb6bf43b83a486379fda59135e97f (plain) (blame)
1
2
3
4
5
6
7
8
9
class InterleavedPeopleHaveLastNames < ActiveRecord::Migration
  def self.up
    add_column "people", "last_name", :string
  end

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