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

20210503131747_add_web_hook_calls_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: cb23c9391eaf06f58aaf42c122058b61f33fcfc2 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddWebHookCallsToPlanLimits < ActiveRecord::Migration[6.0]
  def change
    add_column :plan_limits, :web_hook_calls, :integer, null: false, default: 0
  end
end