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/20230109095622_rename_web_hook_calls_to_web_hook_calls_high.rb')
-rw-r--r--db/migrate/20230109095622_rename_web_hook_calls_to_web_hook_calls_high.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20230109095622_rename_web_hook_calls_to_web_hook_calls_high.rb b/db/migrate/20230109095622_rename_web_hook_calls_to_web_hook_calls_high.rb
deleted file mode 100644
index d3a461b3abb..00000000000
--- a/db/migrate/20230109095622_rename_web_hook_calls_to_web_hook_calls_high.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class RenameWebHookCallsToWebHookCallsHigh < Gitlab::Database::Migration[2.1]
- disable_ddl_transaction!
-
- def up
- rename_column_concurrently :plan_limits, :web_hook_calls, :web_hook_calls_high
- end
-
- def down
- undo_rename_column_concurrently :plan_limits, :web_hook_calls, :web_hook_calls_high
- end
-end