Sha256: 31fc575d30c73dfe0780e496c3499fd1fbd913b704993ded4b65e044120a353f

Contents?: true

Size: 203 Bytes

Versions: 6

Compression:

Stored size: 203 Bytes

Contents

class PeopleHaveLastNames < ActiveRecord::Migration::Current
  def self.up
    add_column "people", "last_name", :string
  end

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ibm_db-5.2.0-x86-mingw32 test/migrations/missing/1_people_have_last_names.rb
ibm_db-5.1.0-x86-mingw32 test/migrations/missing/1_people_have_last_names.rb
ibm_db-5.0.5-x86-mingw32 test/migrations/missing/1_people_have_last_names.rb
ibm_db-5.0.4-x86-mingw32 test/migrations/missing/1_people_have_last_names.rb
ibm_db-5.0.3-x86-mingw32 test/migrations/missing/1_people_have_last_names.rb
ibm_db-5.0.2-x86-mingw32 test/migrations/missing/1_people_have_last_names.rb