Move sqlite back into development

Heroku does not allow sqlite and will just fail building it.
And it's anyway in no way an option for production.
This commit is contained in:
Henne Vogelsang 2018-09-18 20:53:22 +02:00
parent 042d49619c
commit c343740c11
No known key found for this signature in database
GPG key ID: 9D6164C2955FADE0

View file

@ -25,11 +25,8 @@ gem 'rails_12factor', group: :production
gem 'responders', '~> 2.0'
# as supported databases
# WARNING: please refrain from using sqlite for anything serious as it is not
# performant enough
gem 'mysql2'
gem 'pg'
gem 'sqlite3'
# for tracking data changes
gem 'paper_trail'
@ -249,6 +246,8 @@ group :development do
gem 'mina'
# as debugger on error pages
gem 'web-console', '~> 2.0'
# as development database
gem 'sqlite3'
end
group :test do