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/20230120170042_re_add_web_hook_calls_column.rb')
-rw-r--r--db/migrate/20230120170042_re_add_web_hook_calls_column.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/db/migrate/20230120170042_re_add_web_hook_calls_column.rb b/db/migrate/20230120170042_re_add_web_hook_calls_column.rb
deleted file mode 100644
index 1096c073f37..00000000000
--- a/db/migrate/20230120170042_re_add_web_hook_calls_column.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# frozen_string_literal: true
-
-class ReAddWebHookCallsColumn < Gitlab::Database::Migration[2.1]
- enable_lock_retries!
-
- def change
- add_column :plan_limits, :web_hook_calls, :integer, default: 0, null: false, if_not_exists: true
- end
-end