summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210621223000_steal_background_jobs_that_reference_services.rb
blob: 8d326036a6884312dd735d36ae4789b3697c649b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class StealBackgroundJobsThatReferenceServices < ActiveRecord::Migration[6.1]
  def up
    Gitlab::BackgroundMigration.steal('BackfillJiraTrackerDeploymentType2')
    Gitlab::BackgroundMigration.steal('FixProjectsWithoutPrometheusService')
    Gitlab::BackgroundMigration.steal('MigrateIssueTrackersSensitiveData')
    Gitlab::BackgroundMigration.steal('RemoveDuplicateServices')
  end

  def down
    # no-op
  end
end