summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200831224343_populate_vulnerability_historical_statistics_for_year.rb
blob: 3f4fbfbebde62830ce29f0eaad92a2771f8e963c (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
# frozen_string_literal: true

class PopulateVulnerabilityHistoricalStatisticsForYear < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  DELAY_INTERVAL = 5.minutes.to_i
  BATCH_SIZE = 50
  MIGRATION = 'PopulateVulnerabilityHistoricalStatistics'

  disable_ddl_transaction!

  class Vulnerability < ActiveRecord::Base
    self.table_name = 'vulnerabilities'

    include ::EachBatch
  end

  def up
    return unless Gitlab.ee?

    Vulnerability.select('project_id').distinct.each_batch(of: BATCH_SIZE, column: 'project_id') do |project_batch, index|
      migrate_in(index * DELAY_INTERVAL, MIGRATION, [project_batch.pluck(:project_id), 365])
    end
  end

  def down
    # no-op
  end
end