summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/disable_legacy_open_source_license_for_projects_less_than_one_mb.rb
blob: 15c80a6cac22e90264848de35264516a438e4185 (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
    # Set `project_settings.legacy_open_source_license_available` to false for projects less than 1 MB
    class DisableLegacyOpenSourceLicenseForProjectsLessThanOneMb < ::Gitlab::BackgroundMigration::BatchedMigrationJob
      scope_to ->(relation) { relation.where(legacy_open_source_license_available: true) }
      operation_name :disable_legacy_open_source_license_for_projects_less_than_one_mb
      feature_category :database

      def perform
        each_sub_batch do |sub_batch|
          updates = { legacy_open_source_license_available: false, updated_at: Time.current }

          sub_batch
            .joins('INNER JOIN project_statistics ON project_statistics.project_id = project_settings.project_id')
            .where('project_statistics.repository_size < ?', 1.megabyte)
            .update_all(updates)
        end
      end
    end
  end
end