Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
commit311b0269b4eb9839fa63f80c8d7a58f32b8138a0 (patch)
tree07e7870bca8aed6d61fdcc810731c50d2c40af47 /db/post_migrate/20200831224343_populate_vulnerability_historical_statistics_for_year.rb
parent27909cef6c4170ed9205afa7426b8d3de47cbb0c (diff)
Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42
Diffstat (limited to 'db/post_migrate/20200831224343_populate_vulnerability_historical_statistics_for_year.rb')
-rw-r--r--db/post_migrate/20200831224343_populate_vulnerability_historical_statistics_for_year.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/db/post_migrate/20200831224343_populate_vulnerability_historical_statistics_for_year.rb b/db/post_migrate/20200831224343_populate_vulnerability_historical_statistics_for_year.rb
deleted file mode 100644
index 3f4fbfbebde..00000000000
--- a/db/post_migrate/20200831224343_populate_vulnerability_historical_statistics_for_year.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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