debian-mirror-gitlab/db/migrate/20230425101542_remove_create_cross_project_pipeline_worker_job_instances.rb
2023-07-09 08:55:56 +05:30

12 lines
336 B
Ruby

# 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