summaryrefslogtreecommitdiff
path: root/db/migrate/20170216135621_add_index_for_latest_successful_pipeline.rb
blob: be393bd496d6635ce507b4e124ffa5796467c229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# rubocop:disable RemoveIndex
class AddIndexForLatestSuccessfulPipeline < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers
  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index(:ci_commits, [:gl_project_id, :ref, :status])
  end

  def down
    remove_index :ci_commits, [:gl_project_id, :ref, :status] if index_exists? :ci_commits, [:gl_project_id, :ref, :status]
  end
end