0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-14 13:58:53 +08:00
discourse/db/post_migrate/20250227142351_migrate_sidekiq_jobs.rb
2025-03-10 15:02:48 +01:00

12 lines
248 B
Ruby
Vendored

# frozen_string_literal: true
# TODO: Remove this after the Discourse 3.5 release
class MigrateSidekiqJobs < ActiveRecord::Migration[7.2]
def up
SidekiqMigration.call
end
def down
raise ActiveRecord::IrreversibleMigration
end
end