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

20230109100044_cleanup_web_hook_calls_column_rename.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eca75bff19917db20e3aa8bc750f86e18d0e35bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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