debian-mirror-gitlab/db/migrate/20210503131747_add_web_hook_calls_to_plan_limits.rb
2021-06-08 01:23:25 +05:30

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