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
Upgrading
schema_plusand running any pending migrations will result in a changeddb/schema.rbfile:The changed
db/schema.rbfile will use the old Ruby format wherewill become