summaryrefslogtreecommitdiff
path: root/db/migrate/20170216135621_add_index_for_latest_successful_pipeline.rb
blob: 884c4e569d685ed6bf8cbabbe686eb34975f7a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# rubocop:disable RemoveIndex
class AddIndexForLatestSuccessfulPipeline < ActiveRecord::Migration
  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