summaryrefslogtreecommitdiff
path: root/db/post_migrate/20211215090620_schedule_update_timelogs_null_spent_at.rb
blob: 5876d3f8a9ad68a30b036415c564c2488d403c10 (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

class ScheduleUpdateTimelogsNullSpentAt < Gitlab::Database::Migration[1.0]
  DOWNTIME = false
  BATCH_SIZE = 5_000
  DELAY_INTERVAL = 2.minutes
  MIGRATION = 'UpdateTimelogsNullSpentAt'

  disable_ddl_transaction!

  def up
    queue_background_migration_jobs_by_range_at_intervals(
      define_batchable_model('timelogs').where(spent_at: nil),
      MIGRATION,
      DELAY_INTERVAL,
      batch_size: BATCH_SIZE
    )
  end

  def down
    # no-op
  end
end