debian-mirror-gitlab/db/post_migrate/20210427212034_schedule_update_timelogs_project_id.rb
2021-06-08 01:23:25 +05:30

33 lines
632 B
Ruby

# frozen_string_literal: true
class ScheduleUpdateTimelogsProjectId < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
BATCH_SIZE = 50_000
DELAY_INTERVAL = 2.minutes
MIGRATION = 'UpdateTimelogsProjectId'
disable_ddl_transaction!
class Timelog < ActiveRecord::Base
include EachBatch
self.table_name = 'timelogs'
self.inheritance_column = :_type_disabled
end
def up
queue_background_migration_jobs_by_range_at_intervals(
Timelog.all,
MIGRATION,
DELAY_INTERVAL,
batch_size: BATCH_SIZE
)
end
def down
# no-op
end
end