Sha256: 8684c65dd28d3b47a6574be866e1663496188bae7c0791d2dc4640294c33f81c

Contents?: true

Size: 214 Bytes

Versions: 3

Compression:

Stored size: 214 Bytes

Contents

migration 2, :add_dob_to_people do
  up do
    modify_table :people do
      add_column :dob, DateTime, allow_nil: true
    end
  end

  down do
    modify_table :people do
      drop_column :dob
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sbf-dm-migrations-1.4.0.beta.1 db/migrations/2_add_dob_to_people.rb
sbf-dm-migrations-1.3.0 db/migrations/2_add_dob_to_people.rb
sbf-dm-migrations-1.3.0.beta db/migrations/2_add_dob_to_people.rb