Skip to content

Instantly share code, notes, and snippets.

@drewB
drewB / migrate_dj_to_rails5.rb
Created December 11, 2019 01:08
Migration for upgrading existing delayed_job records when moving from Rails 4 to Rails 5.
require 'ruby-progressbar'
class MigrateDjToRails5 < ActiveRecord::Migration[5.2]
include MigrationHelper
def up
execute create_backup('delayed_jobs')
migrator = DelayedJobMigrator.new(Delayed::Job.all)
migrator.migrate
end