summaryrefslogtreecommitdiff
path: root/db/migrate/20210503131747_add_web_hook_calls_to_plan_limits.rb
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