mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
Fix DB adapters with the same constraints as in the ActiveRecord files (for example https://github.com/rails/rails/blob/v7.1.3.4/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb )
This commit is contained in:
parent
75a88f2955
commit
212b2dc20c
2 changed files with 7 additions and 7 deletions
6
Gemfile
6
Gemfile
|
@ -29,9 +29,9 @@ gem 'tracks-chartjs-ror'
|
|||
gem 'will_paginate'
|
||||
|
||||
# Use --without <group> argument to skip unnecessary drivers
|
||||
gem 'sqlite3', group: :sqlite
|
||||
gem 'mysql2', '~> 0.5.6', group: :mysql
|
||||
gem 'pg', '~> 1.5.6', group: :postgresql
|
||||
gem 'sqlite3', '~> 1.4', group: :sqlite
|
||||
gem 'mysql2', '~> 0.5', group: :mysql
|
||||
gem 'pg', '~> 1.1', group: :postgresql
|
||||
|
||||
group :assets, :optional => true do
|
||||
gem 'listen'
|
||||
|
|
|
@ -311,7 +311,7 @@ GEM
|
|||
actionpack (>= 5.2)
|
||||
activesupport (>= 5.2)
|
||||
sprockets (>= 3.0.0)
|
||||
sqlite3 (1.6.9)
|
||||
sqlite3 (1.7.3)
|
||||
mini_portile2 (~> 2.8.0)
|
||||
stripe (5.24.0)
|
||||
strscan (3.1.0)
|
||||
|
@ -368,8 +368,8 @@ DEPENDENCIES
|
|||
mini_racer
|
||||
minitest-stub-const
|
||||
mocha
|
||||
mysql2 (~> 0.5.6)
|
||||
pg (~> 1.5.6)
|
||||
mysql2 (~> 0.5)
|
||||
pg (~> 1.1)
|
||||
puma (~> 6.4)
|
||||
rack-mini-profiler
|
||||
rails (~> 6.1)
|
||||
|
@ -383,7 +383,7 @@ DEPENDENCIES
|
|||
simplecov
|
||||
solargraph
|
||||
spring (~> 4)
|
||||
sqlite3
|
||||
sqlite3 (~> 1.4)
|
||||
stripe (~> 5.24.0)
|
||||
tolk (~> 5.0.1)
|
||||
tracks-chartjs-ror
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue