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

20230720062249_add_package_registry_allow_anyone_to_pull_option_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: eff2b271f86d367dd22ec4ce25cae2251fccbb5f (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class AddPackageRegistryAllowAnyoneToPullOptionToApplicationSettings < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    add_column :application_settings, :package_registry_allow_anyone_to_pull_option, :boolean, null: false,
      default: true
  end
end