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

Made delayed_jobs handler column a longtext

This commit is contained in:
2019-04-19 22:49:37 -04:00
parent af9bec97af
commit 22e63d3e92
2 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
class IncreaseDelayedJobsHandler < ActiveRecord::Migration[5.2]
def change
# 4294967295 is the maximum longtext size for mysql
# change_column :delayed_jobs, :handler, :text, :limit => 4294967295
change_column :delayed_jobs, :handler, :longtext
end
end