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

20201230161206_add_rate_limiting_response_text_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: 647455f5f88b2cebc7f205796928221f0bd48873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class AddRateLimitingResponseTextToApplicationSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in 20210101110640_set_limit_for_rate_limiting_response_text
  def change
    add_column :application_settings, :rate_limiting_response_text, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end