1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/db/migrate/20190420021620_increase_delayed_jobs_handler.rb

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