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

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

class QueueUpdateCodeSuggestionsForNamespaceSettings < Gitlab::Database::Migration[2.1]
  def up
    # no-op due to not running anywhere yet and business decision to revert the decision
    # see: https://gitlab.com/gitlab-org/gitlab/-/issues/408104
  end

  def down
    # no-op
  end
end