summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210413132500_reschedule_artifact_expiry_backfill_again.rb
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