Charlie Allen
Charlie Allen

Reputation: 65

Heroku - Getting a SQLite error even though it is not in the Gemfile

I've removed the sqlite3 gem from my gemfile and replaced it with pg, deleted the gemfile.lock and re-bundled, and there are no dependencies in the new gemfile.lock which require sqlite3, so why am I still getting this error?

Upvotes: 0

Views: 109

Answers (1)

juneja2
juneja2

Reputation: 11

In my case, the issue was that I had sqlite3 in comments within database.yml. After removing those comments, my project was able to get up and running again.

Upvotes: 1

Related Questions