1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Increase the delayed job handler column size to match the tournament backups backup data size. This was preventing import jobs from saving.

This commit is contained in:
2025-01-04 19:19:08 -05:00
parent f3e0f5d4c5
commit 210e763d4c
2 changed files with 7 additions and 2 deletions

View File

@@ -10,11 +10,11 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.2].define(version: 2024_12_24_132705) do
ActiveRecord::Schema[7.2].define(version: 2025_01_05_001725) do
create_table "delayed_jobs", force: :cascade do |t|
t.integer "priority", default: 0, null: false
t.integer "attempts", default: 0, null: false
t.text "handler"
t.text "handler", limit: 4294967295
t.text "last_error"
t.datetime "run_at", precision: nil
t.datetime "locked_at", precision: nil