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-12-21 15:15:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-21 15:15:58 +0300
commit2779809e45970e7660521b94dbebcf24ed00d60d (patch)
tree98df2ede3cb2bdcb42955e5c4684dd70a8a79c81 /db/migrate
parent4ecd816dcbbf2c3a83087ea1add13f087530e9eb (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20231212090606_add_partition_id_to_pipeline_chat_data.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20231212090606_add_partition_id_to_pipeline_chat_data.rb b/db/migrate/20231212090606_add_partition_id_to_pipeline_chat_data.rb
new file mode 100644
index 00000000000..bf3c87f9816
--- /dev/null
+++ b/db/migrate/20231212090606_add_partition_id_to_pipeline_chat_data.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+class AddPartitionIdToPipelineChatData < Gitlab::Database::Migration[2.2]
+ milestone '16.8'
+ enable_lock_retries!
+
+ def change
+ add_column(:ci_pipeline_chat_data, :partition_id, :bigint, default: 100, null: false)
+ end
+end