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

20210427085020_backfill_ci_builds_runner_session_for_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: fa0420fe42674be33f58004210df229428536a2b (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
# frozen_string_literal: true

class BackfillCiBuildsRunnerSessionForBigintConversion < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  TABLE = :ci_builds_runner_session
  COLUMNS = %i(build_id)

  def up
    return unless should_run?

    backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS)
  end

  def down
    return unless should_run?

    revert_backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS)
  end

  private

  def should_run?
    Gitlab.dev_or_test_env? || Gitlab.com?
  end
end