Gem::LoadError: Specified 'sqlite3' for database adapter, but the gem is not loaded

前端 未结 6 974
粉色の甜心
粉色の甜心 2021-02-05 05:45

I\'m trying to push my app to heroku but am getting this message.

Gem::LoadError: Specified \'sqlite3\' for database adaptor, but the gem is not loaded.
<         


        
6条回答
  •  深忆病人
    2021-02-05 06:13

    I had to specify my sqlite3 version as 1.3.13:

    gem 'sqlite3', '~> 1.3.13'

    Then run bundle update.

提交回复
热议问题