Merge pull request #3035 from TracksApp/db_versions

Fix DB adapters with the same constraints as in the ActiveRecord file…
This commit is contained in:
Jyri-Petteri Paloposki 2024-07-18 21:45:38 +03:00 committed by GitHub
commit 7a64917647
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 9 deletions

View file

@ -29,9 +29,9 @@ gem 'tracks-chartjs-ror'
gem 'will_paginate' gem 'will_paginate'
# Use --without <group> argument to skip unnecessary drivers # Use --without <group> argument to skip unnecessary drivers
gem 'sqlite3', group: :sqlite gem 'sqlite3', '~> 1.4', group: :sqlite
gem 'mysql2', '~> 0.5.6', group: :mysql gem 'mysql2', '~> 0.5', group: :mysql
gem 'pg', '~> 1.5.6', group: :postgresql gem 'pg', '~> 1.1', group: :postgresql
group :assets, :optional => true do group :assets, :optional => true do
gem 'listen' gem 'listen'
@ -69,5 +69,5 @@ group :test, :optional => true do
end end
group :stripe, :optional => true do group :stripe, :optional => true do
gem 'stripe', "~> 5.24.0" gem 'stripe'
end end

View file

@ -311,7 +311,7 @@ GEM
actionpack (>= 5.2) actionpack (>= 5.2)
activesupport (>= 5.2) activesupport (>= 5.2)
sprockets (>= 3.0.0) sprockets (>= 3.0.0)
sqlite3 (1.6.9) sqlite3 (1.7.3)
mini_portile2 (~> 2.8.0) mini_portile2 (~> 2.8.0)
stripe (5.24.0) stripe (5.24.0)
strscan (3.1.0) strscan (3.1.0)
@ -368,8 +368,8 @@ DEPENDENCIES
mini_racer mini_racer
minitest-stub-const minitest-stub-const
mocha mocha
mysql2 (~> 0.5.6) mysql2 (~> 0.5)
pg (~> 1.5.6) pg (~> 1.1)
puma (~> 6.4) puma (~> 6.4)
rack-mini-profiler rack-mini-profiler
rails (~> 6.1) rails (~> 6.1)
@ -383,8 +383,8 @@ DEPENDENCIES
simplecov simplecov
solargraph solargraph
spring (~> 4) spring (~> 4)
sqlite3 sqlite3 (~> 1.4)
stripe (~> 5.24.0) stripe
tolk (~> 5.0.1) tolk (~> 5.0.1)
tracks-chartjs-ror tracks-chartjs-ror
uglifier (>= 1.3.0) uglifier (>= 1.3.0)