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