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

20230718025027_cleanup_bigint_conversion_for_events_for_gitlab_com.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 647052b987ca3a246b8030f78c6c013ff5f6a0ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

# Turning this migration to a no-op due to incident https://gitlab.com/gitlab-com/gl-infra/production/-/issues/16102
# Migration will be retried in 20230801150214_retry_cleanup_bigint_conversion_for_events_for_gitlab_com.rb
class CleanupBigintConversionForEventsForGitlabCom < Gitlab::Database::Migration[2.1]
  def up
    # no-op
  end

  def down
    # no-op
  end
end