summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220906074449_schedule_disable_legacy_open_source_license_for_projects_less_than_one_mb.rb
blob: ee48ace13e0c27e6d037c82c627089eeab53d23f (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
33
# frozen_string_literal: true

class ScheduleDisableLegacyOpenSourceLicenseForProjectsLessThanOneMb < Gitlab::Database::Migration[2.0]
  MIGRATION = 'DisableLegacyOpenSourceLicenseForProjectsLessThanOneMb'
  INTERVAL = 2.minutes
  BATCH_SIZE = 4_000
  MAX_BATCH_SIZE = 50_000
  SUB_BATCH_SIZE = 250

  disable_ddl_transaction!

  restrict_gitlab_migration gitlab_schema: :gitlab_main

  def up
    return unless Gitlab.com?

    queue_batched_background_migration(
      MIGRATION,
      :project_settings,
      :project_id,
      job_interval: INTERVAL,
      batch_size: BATCH_SIZE,
      max_batch_size: MAX_BATCH_SIZE,
      sub_batch_size: SUB_BATCH_SIZE
    )
  end

  def down
    return unless Gitlab.com?

    delete_batched_background_migration(MIGRATION, :project_settings, :project_id, [])
  end
end