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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210601131742_update_web_hook_calls_limit.rb')
-rw-r--r--db/migrate/20210601131742_update_web_hook_calls_limit.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20210601131742_update_web_hook_calls_limit.rb b/db/migrate/20210601131742_update_web_hook_calls_limit.rb
deleted file mode 100644
index 6af0facd17d..00000000000
--- a/db/migrate/20210601131742_update_web_hook_calls_limit.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class UpdateWebHookCallsLimit < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- def up
- return unless Gitlab.com?
-
- create_or_update_plan_limit('web_hook_calls', 'free', 120)
- end
-
- def down
- return unless Gitlab.com?
-
- create_or_update_plan_limit('web_hook_calls', 'free', 0)
- end
-end