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

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

class AddEnforceSshCertificatesToNamespaceSettings < Gitlab::Database::Migration[2.2]
  enable_lock_retries!

  milestone '16.7'

  def change
    add_column :namespace_settings, :enforce_ssh_certificates, :boolean, default: false, null: false
  end
end