summaryrefslogtreecommitdiff
path: root/db/migrate/20190114184258_migrate_legacy_attachments.rb
blob: e9fb7952dc9a692476c03a1186e6abcbba827e84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true

class MigrateLegacyAttachments < ActiveRecord::Migration[5.0]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  DOWNTIME = false

  MIGRATION = 'MigrateLegacyUploads'.freeze
  BATCH_SIZE = 5000
  DELAY_INTERVAL = 5.minutes.to_i

  class Upload < ActiveRecord::Base
    self.table_name = 'uploads'

    include ::EachBatch
  end

  def up
    Upload.where(uploader: 'AttachmentUploader').each_batch(of: BATCH_SIZE) do |relation, index|
      start_id, end_id = relation.pluck('MIN(id), MAX(id)').first
      delay = index * DELAY_INTERVAL

      BackgroundMigrationWorker.perform_in(delay, MIGRATION, [start_id, end_id])
    end
  end

  # not needed
  def down
  end
end