summaryrefslogtreecommitdiff
path: root/db/post_migrate/20181105201455_steal_fill_store_upload.rb
blob: 982001fedbe3c143b5e003fb4e584b940cf1f8e6 (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
# frozen_string_literal: true

class StealFillStoreUpload < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  BATCH_SIZE = 10_000

  disable_ddl_transaction!

  class Upload < ActiveRecord::Base
    include EachBatch

    self.table_name = 'uploads'
    self.inheritance_column = :_type_disabled # Disable STI
  end

  def up
    Gitlab::BackgroundMigration.steal('FillStoreUpload')

    Upload.where(store: nil).each_batch(of: BATCH_SIZE) do |batch|
      range = batch.pluck('MIN(id)', 'MAX(id)').first

      Gitlab::BackgroundMigration::FillStoreUpload.new.perform(*range)
    end
  end

  def down
    # noop
  end
end