summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210908132335_disable_job_token_scope_when_unused.rb
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