Skip to content

Commit 34383de

Browse files
committed
deps: Complete the migration to rails 7.2.
1 parent 45b9695 commit 34383de

File tree

3 files changed

+4
-74
lines changed

3 files changed

+4
-74
lines changed

config/application.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
module Tap
1010
class Application < Rails::Application
11-
config.load_defaults 7.1
11+
config.load_defaults 7.2
1212

1313
# Please, add to the `ignore` list any other `lib` subdirectories that do
1414
# not contain `.rb` files, or that should not be reloaded or eager loaded.

config/initializers/new_framework_defaults_7_2.rb

Lines changed: 0 additions & 70 deletions
This file was deleted.

db/schema.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# It's strongly recommended that you check this file into your version control system.
1212

13-
ActiveRecord::Schema[7.1].define(version: 2025_12_16_022119) do
13+
ActiveRecord::Schema[7.2].define(version: 2025_12_16_022119) do
1414
create_table "barcodes", force: :cascade do |t|
1515
t.integer "product_id", null: false
1616
t.string "code", default: "", null: false
@@ -58,7 +58,7 @@
5858
t.datetime "updated_at", precision: nil
5959
t.string "avatar_file_name"
6060
t.string "avatar_content_type"
61-
t.bigint "avatar_file_size"
61+
t.integer "avatar_file_size"
6262
t.datetime "avatar_updated_at", precision: nil
6363
t.integer "category", default: 0
6464
t.integer "stock", default: 0, null: false
@@ -74,7 +74,7 @@
7474
t.integer "dagschotel_id"
7575
t.string "avatar_file_name"
7676
t.string "avatar_content_type"
77-
t.bigint "avatar_file_size"
77+
t.integer "avatar_file_size"
7878
t.datetime "avatar_updated_at", precision: nil
7979
t.integer "orders_count", default: 0
8080
t.boolean "koelkast", default: false

0 commit comments

Comments
 (0)