Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200306170321_add_index_on_user_id_and_created_at_to_ci_pipelines.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b88f938d1c2f87354ec156c6ffa884573c5a2b4f (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 AddIndexOnUserIdAndCreatedAtToCiPipelines < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

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

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