Skip to content
代码片段 群组 项目
未验证 提交 00111df5 编辑于 作者: Manuel Schönlaub's avatar Manuel Schönlaub 提交者: GitLab
浏览文件

Prepare async migration to add ID to index on pipeline

This is done to improve performance in the CommitController.
上级 66f96859
No related branches found
No related tags found
无相关合并请求
# frozen_string_literal: true
class ScheduleIndexCiPipelinesOnProjectIdAndShaAndId < Gitlab::Database::Migration[2.2]
milestone '17.9'
disable_ddl_transaction!
TABLE_NAME = :ci_pipelines
COLUMN_NAMES = [:project_id, :sha, :id]
INDEX_NAME = 'ci_pipelines_on_project_id_and_sha_and_id'
# TODO: Index to be created synchronously in https://gitlab.com/gitlab-org/gitlab/-/issues/516073
def up
prepare_async_index(TABLE_NAME, COLUMN_NAMES, name: INDEX_NAME)
end
def down
unprepare_async_index(TABLE_NAME, COLUMN_NAMES, name: INDEX_NAME)
end
end
ab8ee7d18e100a78130cad7d073316497d623ff6005ee38a3bdc549664b9e7b4
\ No newline at end of file
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册