mirror of
https://github.com/discourse/discourse-data-explorer.git
synced 2025-02-17 17:04:49 +00:00
12 lines
216 B
Ruby
12 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
|