mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-24 17:04:43 +00:00
8 lines
266 B
Ruby
8 lines
266 B
Ruby
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
|