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

20230817050946_backfill_shared_runners_duration_for_project_bigint_conversion.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ad079efb4779d89d53aca3897b10a7e437b8f48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class BackfillSharedRunnersDurationForProjectBigintConversion < Gitlab::Database::Migration[2.1]
  restrict_gitlab_migration gitlab_schema: :gitlab_ci

  TABLE_NAME = :ci_project_monthly_usages
  COLUMN_NAMES = %i[shared_runners_duration]

  def up
    backfill_conversion_of_integer_to_bigint(TABLE_NAME, COLUMN_NAMES, sub_batch_size: 250)
  end

  def down
    revert_backfill_conversion_of_integer_to_bigint(TABLE_NAME, COLUMN_NAMES)
  end
end