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

20231017064317_swap_columns_for_ci_pipeline_variables_pipeline_id_bigint.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 155608a6879e198affb4d4fcd38f43fbed89d328 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true

class SwapColumnsForCiPipelineVariablesPipelineIdBigint < Gitlab::Database::Migration[2.1]
  include ::Gitlab::Database::MigrationHelpers::Swapping
  disable_ddl_transaction!

  def up
    swap
  end

  def down
    swap
  end

  private

  def swap
    # rubocop:disable Migration/WithLockRetriesDisallowedMethod
    with_lock_retries(raise_on_exhaustion: true) do
      lock_tables(:ci_pipelines, :ci_pipeline_variables)

      swap_columns(
        :ci_pipeline_variables,
        :pipeline_id,
        :pipeline_id_convert_to_bigint
      )
      reset_trigger_function(:trigger_7f3d66a7d7f5)
      swap_columns_default(
        :ci_pipeline_variables,
        :pipeline_id,
        :pipeline_id_convert_to_bigint
      )
      swap_foreign_keys(
        :ci_pipeline_variables,
        :fk_f29c5f4380,
        :temp_fk_rails_8d3b04e3e1
      )
      swap_indexes(
        :ci_pipeline_variables,
        :index_ci_pipeline_variables_on_pipeline_id_and_key,
        :index_ci_pipeline_variables_on_pipeline_id_bigint_and_key
      )
    end
    # rubocop:enable Migration/WithLockRetriesDisallowedMethod
  end
end