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

@@ -0,0 +1,5 @@
class IncreaseDelayedJobHandlerSize < ActiveRecord::Migration[7.2]
def change
change_column :delayed_jobs, :handler, :text, limit: 4294967295 # Change to LONGTEXT
end
end