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

20230224161346_add_saml_group_lock_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: 003dd5c5b6107ecf61b1b77c478284d7f5725f0f (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddSamlGroupLockToApplicationSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column :application_settings, :lock_memberships_to_saml, :boolean, default: false, null: false
  end
end