debian-mirror-gitlab/db/post_migrate/20210908132335_disable_job_token_scope_when_unused.rb
2022-08-27 11:52:29 +05:30

11 lines
246 B
Ruby

# 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