2020-09-28 11:23:53 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FixQueryIds < ActiveRecord::Migration[6.0]
|
|
|
|
def up
|
2022-12-29 07:31:29 -05:00
|
|
|
Rake::Task["data_explorer:fix_query_ids"].invoke
|
2020-09-28 11:23:53 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise ActiveRecord::IrreversibleMigration
|
|
|
|
end
|
|
|
|
end
|