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

20220718083945_add_unique_project_download_limit_allowlist_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: 49d9a652472bffaeed478007c734974ce1eedfac (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddUniqueProjectDownloadLimitAllowlistToNamespaceSettings < Gitlab::Database::Migration[2.0]
  def change
    add_column :namespace_settings, :unique_project_download_limit_allowlist,
      :text,
      array: true,
      default: [],
      null: false
  end
end