debian-mirror-gitlab/db/post_migrate/20230109100044_cleanup_web_hook_calls_column_rename.rb
2023-04-23 21:23:45 +05:30

14 lines
357 B
Ruby

# 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