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

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

class RescheduleArtifactExpiryBackfillAgain < ActiveRecord::Migration[6.0]
  # This migration has been disabled as it was causing a regression bug for self instances
  # preventing artifact deletion, see https://gitlab.com/gitlab-org/gitlab/-/issues/355955

  def up
    # no-op
  end

  def down
    # no-op
  end
end