summaryrefslogtreecommitdiff
path: root/db/migrate/20210503131747_add_web_hook_calls_to_plan_limits.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210503131747_add_web_hook_calls_to_plan_limits.rb')
-rw-r--r--db/migrate/20210503131747_add_web_hook_calls_to_plan_limits.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20210503131747_add_web_hook_calls_to_plan_limits.rb b/db/migrate/20210503131747_add_web_hook_calls_to_plan_limits.rb
new file mode 100644
index 00000000000..cb23c9391ea
--- /dev/null
+++ b/db/migrate/20210503131747_add_web_hook_calls_to_plan_limits.rb
@@ -0,0 +1,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