Error Your version of SQLite (3.7.17) is too old. Active Record supports SQLite >= 3.8
问题 I have just upgraded from rails 5.2 to rails 6 and when I try to do anything with the app the above error is thrown. I am using sqlite3 for development in the gem file and the old app was working just fine but after the upgrade, the error keeps getting thrown . group :development do gem 'sqlite3' #gem to use in development environment end group :production do gem 'pg' #gem to use in production environment #gem 'fog' end That is what is my gem file 回答1: I switched my dev machine over to Ubuntu