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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue