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

20230210181214_add_allow_deploy_tokens_and_keys_with_external_authn_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d65fbca1975506f654fe4b72a57333b676f6cdae (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class AddAllowDeployTokensAndKeysWithExternalAuthnToApplicationSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column(:application_settings, :allow_deploy_tokens_and_keys_with_external_authn, :boolean,
      default: false, null: false)
  end
end