summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/legacy_uploads_migrator.rb
blob: f7cadb9b00d34cf72692a925d9ed938118d7d38e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # This migration takes all legacy uploads (that were uploaded using AttachmentUploader)
    # and migrate them to the new (FileUploader) location (=under projects).
    #
    # We have dependencies (uploaders) in this migration because extracting code would add a lot of complexity
    # and possible errors could appear as the logic in the uploaders is not trivial.
    #
    # This migration will be removed in 13.0 in order to get rid of a migration that depends on
    # the application code.
    class LegacyUploadsMigrator
      include Database::MigrationHelpers

      def perform(start_id, end_id)
        Upload.where(id: start_id..end_id, uploader: 'AttachmentUploader', model_type: 'Note').find_each do |upload|
          LegacyUploadMover.new(upload).execute
        end
      end
    end
  end
end