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/post_migrate/20230109100044_cleanup_web_hook_calls_column_rename.rb')
-rw-r--r--db/post_migrate/20230109100044_cleanup_web_hook_calls_column_rename.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/post_migrate/20230109100044_cleanup_web_hook_calls_column_rename.rb b/db/post_migrate/20230109100044_cleanup_web_hook_calls_column_rename.rb
deleted file mode 100644
index eca75bff199..00000000000
--- a/db/post_migrate/20230109100044_cleanup_web_hook_calls_column_rename.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class CleanupWebHookCallsColumnRename < Gitlab::Database::Migration[2.1]
- disable_ddl_transaction!
-
- def up
- # noop, related incident: https://gitlab.com/gitlab-com/gl-infra/production/-/issues/8264
- end
-
- def down
- undo_cleanup_concurrent_column_rename :plan_limits, :web_hook_calls, :web_hook_calls_high
- end
-end