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/20230120170631_drop_sync_triggers_from_web_hook_calls_plan_limits.rb')
-rw-r--r--db/migrate/20230120170631_drop_sync_triggers_from_web_hook_calls_plan_limits.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20230120170631_drop_sync_triggers_from_web_hook_calls_plan_limits.rb b/db/migrate/20230120170631_drop_sync_triggers_from_web_hook_calls_plan_limits.rb
deleted file mode 100644
index 74c642437b9..00000000000
--- a/db/migrate/20230120170631_drop_sync_triggers_from_web_hook_calls_plan_limits.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class DropSyncTriggersFromWebHookCallsPlanLimits < Gitlab::Database::Migration[2.1]
- enable_lock_retries!
-
- def up
- drop_trigger('trigger_c0776354152a', 'plan_limits')
- drop_trigger('trigger_d0c336b01d00', 'plan_limits')
- drop_trigger('trigger_e19c4cf656dc', 'plan_limits')
- end
-
- def down
- # noop
- end
-end