mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-06 09:11:11 +08:00
12 lines
248 B
Ruby
12 lines
248 B
Ruby
# 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
|