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

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

class AddWebHookCallsMedAndMaxToPlanLimits < Gitlab::Database::Migration[2.0]
  def change
    add_column :plan_limits, :web_hook_calls_mid, :integer, null: false, default: 0
    add_column :plan_limits, :web_hook_calls_low, :integer, null: false, default: 0
  end
end