gitlab-org--gitlab-foss/db/migrate/20210819153805_set_default_...

18 lines
447 B
Ruby

# frozen_string_literal: true
class SetDefaultJobTokenScopeTrue < ActiveRecord::Migration[6.1]
include Gitlab::Database::MigrationHelpers
def up
with_lock_retries do
change_column_default :project_ci_cd_settings, :job_token_scope_enabled, from: false, to: true
end
end
def down
with_lock_retries do
change_column_default :project_ci_cd_settings, :job_token_scope_enabled, from: true, to: false
end
end
end