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

20220704034050_add_users_allowlist_to_git_rate_limits.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7dd1bb45e4cd005bf48e27147f9ff1d38d50575f (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddUsersAllowlistToGitRateLimits < Gitlab::Database::Migration[2.0]
  def change
    add_column :application_settings, :git_rate_limit_users_allowlist,
      :text,
      array: true,
      default: [],
      null: false
  end
end