summaryrefslogtreecommitdiff
path: root/db/migrate/20230425101542_remove_create_cross_project_pipeline_worker_job_instances.rb
blob: cf91b2a52d47e7cf2199093fec89ed3a11e76873 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class RemoveCreateCrossProjectPipelineWorkerJobInstances < Gitlab::Database::Migration[2.1]
  def up
    # no-op to mitigate https://gitlab.com/gitlab-com/gl-infra/production/-/issues/9566
  end

  def down
    # no-op to mitigate https://gitlab.com/gitlab-com/gl-infra/production/-/issues/9566
  end
end