gitlab-org--gitlab-foss/db/migrate/20210503131747_add_web_hook...

8 lines
199 B
Ruby

# 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