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:
@@ -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
|
||||
Reference in New Issue
Block a user