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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-10-18 15:10:46 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-10-18 15:10:46 +0300
commit91ca0550e00347bb6db5aba9f039be9137f3a254 (patch)
tree712f2f50390280e5c57b5d837cd66d8af5915197 /spec/migrations
parent990891feb7cb31269ad7ec13f359aea6b25c1f00 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/migrations')
-rw-r--r--spec/migrations/20230905064317_swap_columns_for_ci_pipeline_variables_pipeline_id_bigint_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/migrations/20230905064317_swap_columns_for_ci_pipeline_variables_pipeline_id_bigint_spec.rb b/spec/migrations/20230905064317_swap_columns_for_ci_pipeline_variables_pipeline_id_bigint_spec.rb
new file mode 100644
index 00000000000..d5cc98831b6
--- /dev/null
+++ b/spec/migrations/20230905064317_swap_columns_for_ci_pipeline_variables_pipeline_id_bigint_spec.rb
@@ -0,0 +1,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