debian-mirror-gitlab/db/migrate/20230210181214_add_allow_deploy_tokens_and_keys_with_external_authn_to_application_settings.rb
2023-04-23 21:23:45 +05:30

9 lines
295 B
Ruby

# 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