Sha256: 89bb419237580a44d32916a276a5e82f387bd990c31af8731cd0a7d867f4254b

Contents?: true

Size: 192 Bytes

Versions: 2

Compression:

Stored size: 192 Bytes

Contents

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ibm_db-3.0.5-x86-mingw32 test/migrations/missing/1_people_have_last_names.rb
ibm_db-3.0.5 test/migrations/missing/1_people_have_last_names.rb