summaryrefslogtreecommitdiff
path: root/db/migrate/20230210181214_add_allow_deploy_tokens_and_keys_with_external_authn_to_application_settings.rb
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