In my gemfile:
group :development, :test,:production do
gem 'mysql2', '~> 0.3.16'
end
In the magazines:
$ heroku run rake db:migrate
Running rake db:migrate attached to terminal... up, run.3758
rake aborted!
Gem::LoadError: Specified 'mysql' for database adapter, but the gem is not loaded. Add gem 'mysql' to your Gemfile (and ensure its version is
at the minimum required by ActiveRecord).
I added the addition of "cleardb" for the application. And now I want to use it. But I can not go to the database, as I get the above errors.
user4229576
source
share