DEV Community

Discussion on: How to change the database in a Rails application ?

Collapse
 
nemuba profile image
Alef Ojeda de Oliveira

Strange here it worked, tested other databases?

Collapse
 
coderljy profile image
KenntsuRinn

Mysql is the same result.

Thread Thread
 
inayuky profile image
inayuky

The workaround is to disable 'spring' as follows.

  1. comment out gem 'spring' in the Gemfile
  2. execute "bundle install"

Details are below issue.
github.com/rails/rails/issues/3471...

I fixed this issue by the following PR.
github.com/rails/spring/pull/679