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

20230712135428_backfill_ci_pipeline_messages_pipeline_id_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: 6ac036d0f76928f9e943cd2b9253026bdff097c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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

  TABLE = :ci_pipeline_messages
  COLUMNS = %i[pipeline_id]
  SUB_BATCH_SIZE = 500

  def up
    backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS, sub_batch_size: SUB_BATCH_SIZE)
  end

  def down
    revert_backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS)
  end
end