summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200908064229_add_partial_index_to_ci_builds_table_on_user_id_name.rb
blob: 433fa957c38d79f8c2fe9b06e151e8180efc0dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true

class AddPartialIndexToCiBuildsTableOnUserIdName < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  disable_ddl_transaction!

  INDEX_NAME = 'index_partial_ci_builds_on_user_id_name_parser_features'
  FILTER_CONDITION = <<~SQL
    (((type)::text = 'Ci::Build'::text) AND
      ((name)::text = ANY (
        ARRAY[
          ('container_scanning'::character varying)::text,
          ('dast'::character varying)::text,
          ('dependency_scanning'::character varying)::text,
          ('license_management'::character varying)::text,
          ('license_scanning'::character varying)::text,
          ('sast'::character varying)::text,
          ('coverage_fuzzing'::character varying)::text,
          ('secret_detection'::character varying)::text
        ]
      ))
    )
  SQL

  def up
    add_concurrent_index(:ci_builds,
                         [:user_id, :name],
                         where: FILTER_CONDITION,
                         name: INDEX_NAME)
  end

  def down
    remove_concurrent_index_by_name :ci_builds, INDEX_NAME
  end
end