diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2018-11-21 10:25:55 +0000 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2018-12-03 23:12:41 +0800 |
commit | 5733f5b875308ba848753e4ada81f8a4a633a7b7 (patch) | |
tree | 9ead2c56e851fa40d2207a69296544e3fe9d44f5 /db/migrate | |
parent | 19ef77a1cdd9959489037450d5061ea4728ae40b (diff) | |
download | gitlab-ce-5733f5b875308ba848753e4ada81f8a4a633a7b7.tar.gz |
Add partial index for ci_builds on project_id and status
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20181121101842_add_ci_builds_partial_index_on_project_id_and_status.rb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/db/migrate/20181121101842_add_ci_builds_partial_index_on_project_id_and_status.rb b/db/migrate/20181121101842_add_ci_builds_partial_index_on_project_id_and_status.rb new file mode 100644 index 00000000000..5b47a279438 --- /dev/null +++ b/db/migrate/20181121101842_add_ci_builds_partial_index_on_project_id_and_status.rb @@ -0,0 +1,33 @@ +# frozen_string_literal: true + +# See http://doc.gitlab.com/ce/development/migration_style_guide.html +# for more information on how to write migrations for GitLab. + +class AddCiBuildsPartialIndexOnProjectIdAndStatus < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + disable_ddl_transaction! + + def up + add_concurrent_index(*index_arguments) + end + + def down + remove_concurrent_index(*index_arguments) + end + + private + + def index_arguments + [ + :ci_builds, + [:project_id, :status], + { + name: 'index_ci_builds_project_id_and_status_for_live_jobs_partial2', + where: "(((type)::text = 'Ci::Build'::text) AND ((status)::text = ANY (ARRAY[('running'::character varying)::text, ('pending'::character varying)::text, ('created'::character varying)::text])))" + } + ] + end +end |