mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-01 07:11:26 +08:00
11 lines
216 B
Ruby
11 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FixQueryIds < ActiveRecord::Migration[6.0]
|
|
def up
|
|
Rake::Task["data_explorer:fix_query_ids"].invoke
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|