Skip to content

Commit

Permalink
Fix "temporary" pinning of sqlite as ActiveStorage now supports more …
Browse files Browse the repository at this point in the history
…recent versions

Not required anymore.
#5727

(cherry picked from commit ad924fd)
  • Loading branch information
fthobe committed Feb 5, 2025
1 parent 9f9f275 commit f9f4f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dbs = ENV['DB_ALL'] ? 'all' : ENV.fetch('DB', 'sqlite')
gem 'mysql2', '~> 0.5.0', require: false if dbs.match?(/all|mysql/)
gem 'pg', '~> 1.0', require: false if dbs.match?(/all|postgres/)
gem 'fast_sqlite', require: false if dbs.match?(/all|sqlite/)
gem 'sqlite3', '~> 1.4', require: false if dbs.match?(/all|sqlite/)
gem 'sqlite3', '>= 2.1', require: false if dbs.match?(/all|sqlite/)


gem 'database_cleaner', '~> 2.0', require: false
Expand Down

0 comments on commit f9f4f24

Please sign in to comment.