aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/migrations_with_missing_versions/1_people_have_last_names.rb
blob: 009729b330b19c3c029a7fe21d667526e3b0ed02 (plain) (blame)
1
2
3
4
5
6
7
8
9
class PeopleHaveLastNames < ActiveRecord::Migration
  def self.up
    add_column "people", "last_name", :string
  end
  
  def self.down
    remove_column "people", "last_name"
  end
end