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

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

class DisableJobTokenScopeWhenUnused < Gitlab::Database::Migration[1.0]
  def up
    # no-op: Must have run before %"15.X" as it is not compatible with decomposed CI database
  end

  def down
    # no-op
  end
end