Skip to content

Commit

Permalink
Merge pull request #139 from kangkyu/kangkyu/up-sqlite3
Browse files Browse the repository at this point in the history
bump and specify version of sqlite3
  • Loading branch information
kangkyu authored Jul 10, 2024
2 parents 61f2daa + 2a21ea7 commit 2327be0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ group :test do
end

group :development do
gem 'sqlite3'
gem 'sqlite3', '~> 1.7.3'
gem 'spring'
end

group :production do
gem 'pg', '>= 0.18', '< 2.0'
gem 'pg', "~> 1.1"
gem 'rails_12factor'
end

Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ GEM
actionpack (>= 6.1)
activesupport (>= 6.1)
sprockets (>= 3.0.0)
sqlite3 (1.6.3)
sqlite3 (1.7.3)
mini_portile2 (~> 2.8.0)
stringio (3.1.1)
temple (0.10.2)
Expand Down Expand Up @@ -301,7 +301,7 @@ DEPENDENCIES
importmap-rails
jbuilder (~> 2.11)
jquery-rails
pg (>= 0.18, < 2.0)
pg (~> 1.1)
puma (>= 5.0)
rails (~> 7.1.3)
rails_12factor
Expand All @@ -310,7 +310,7 @@ DEPENDENCIES
sassc-rails (~> 2.1.2)
spring
sprockets-rails (~> 3.5.1)
sqlite3
sqlite3 (~> 1.7.3)
turbo-rails
uglifier (>= 1.3.0)

Expand Down
2 changes: 1 addition & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.0].define(version: 2024_07_10_002655) do
ActiveRecord::Schema[7.1].define(version: 2024_07_10_002655) do
create_table "tasks", force: :cascade do |t|
t.string "name", limit: 255
t.string "comment", limit: 255
Expand Down

0 comments on commit 2327be0

Please sign in to comment.