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

20231116201338_add_require_admin_two_factor_authentication_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: 9f6c4feff349acd45b4f2bd0c35c08955925f6de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddRequireAdminTwoFactorAuthenticationToApplicationSettings < Gitlab::Database::Migration[2.2]
  milestone '16.8'

  def change
    add_column :application_settings, :require_admin_two_factor_authentication, :boolean, default: false, null: false
  end
end