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

20230822195852_remove_pa_jitsu_related_settings.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d36cbac956b85f616ba576e64ec47ad2bce7576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class RemovePaJitsuRelatedSettings < Gitlab::Database::Migration[2.1]
  def up
    # Changed to a no-op, this migration was reverted after
    # an incident during a deploy to staging.gitlab.com
    # https://gitlab.com/gitlab-com/gl-infra/production/-/issues/16274
  end

  def down
    # no-op
  end
end