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

20230905064317_swap_columns_for_ci_pipeline_variables_pipeline_id_bigint_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5cc98831b63ee4c858754f0c7e7e622621c3c1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe SwapColumnsForCiPipelineVariablesPipelineIdBigint, feature_category: :continuous_integration do
  it_behaves_like(
    'swap conversion columns',
    table_name: :ci_pipeline_variables,
    from: :pipeline_id,
    to: :pipeline_id_convert_to_bigint
  )
end