debian-mirror-gitlab/db/post_migrate/20210413132500_reschedule_artifact_expiry_backfill_again.rb
2022-07-16 19:58:13 +02:00

14 lines
350 B
Ruby

# 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