mirror of
https://github.com/discourse/discourse.git
synced 2026-08-14 13:58:53 +08:00
12 lines
248 B
Ruby
Vendored
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
|