After rake db:migrate
I get this:
Gem::LoadError
: You have already activated rake 11.2.2, but your Gemfile requires rake 11.1.2.
What should I do?
After rake db:migrate
I get this:
Gem::LoadError
: You have already activated rake 11.2.2, but your Gemfile requires rake 11.1.2.
What should I do?
Run:
bundle exec rake db:migrate
Basically the problem is that your local (rvm
/ rbenv
/ system) rake
is of version 11.2.2
. You might consider downgrading it with gem
as well.