This repository was archived by the owner on May 13, 2022. It is now read-only.

Description
Upgrading schema_plus and running any pending migrations will result in a changed db/schema.rb file:
#> bundle update schema_plus
#> rake db:migrate
The changed db/schema.rb file will use the old Ruby format where
t.string "description", default: "", null: false
will become
t.string "description", :default=>"", :null=>false