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

20231004091113_swap_columns_for_ci_sources_pipelines_pipeline_id_bigint_spec.rb « post_migrate « db « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d1a4176833c0e0333c8223b371dc9a7fd0cd794 (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
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe SwapColumnsForCiSourcesPipelinesPipelineIdBigint, feature_category: :continuous_integration do
  let(:connection) { active_record_base.connection }

  before do
    connection.execute('ALTER TABLE ci_sources_pipelines ALTER COLUMN pipeline_id TYPE integer')
    connection.execute('ALTER TABLE ci_sources_pipelines ALTER COLUMN pipeline_id_convert_to_bigint TYPE bigint')
  end

  it_behaves_like(
    'swap conversion columns',
    table_name: :ci_sources_pipelines,
    from: :pipeline_id,
    to: :pipeline_id_convert_to_bigint
  )

  context 'when indexes are missing' do
    before do
      connection.remove_index(
        :ci_sources_pipelines, name: :index_ci_sources_pipelines_on_pipeline_id, if_exists: true
      )
      connection.remove_index(
        :ci_sources_pipelines, name: :index_ci_sources_pipelines_on_source_pipeline_id, if_exists: true
      )
    end

    it_behaves_like(
      'swap conversion columns',
      table_name: :ci_sources_pipelines,
      from: :pipeline_id,
      to: :pipeline_id_convert_to_bigint
    )
  end
end