Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210621223000_steal_background_jobs_that_reference_services.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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