summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200608075553_add_index_on_user_id_and_created_at_and_source_to_ci_pipelines.rb
blob: 5df9cacdff676a11122716574f6629d7882337c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :ci_pipelines, [:user_id, :created_at, :source]
    remove_concurrent_index :ci_pipelines, [:user_id, :created_at]
  end

  def down
    add_concurrent_index :ci_pipelines, [:user_id, :created_at]
    remove_concurrent_index :ci_pipelines, [:user_id, :created_at, :source]
  end
end