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

20230131090842_add_global_group_approvers_enabled_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: cb3c747d351471dd178fdcd51f97678a7898e787 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddGlobalGroupApproversEnabledToApplicationSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column :application_settings,
      :security_policy_global_group_approvers_enabled,
      :boolean,
      default: true,
      null: false
  end
end