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

20240110085226_add_rate_limits_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: 2560977f97918e9ced5b10fd5d620280963b1844 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class AddRateLimitsToApplicationSettings < Gitlab::Database::Migration[2.2]
  milestone '16.9'
  enable_lock_retries!

  def change
    add_column :application_settings, :rate_limits, :jsonb, default: {}, null: false
  end
end