summaryrefslogtreecommitdiff
path: root/db/migrate/20180807153545_remove_redundant_status_index_on_ci_builds.rb
blob: f4f7cb6f8ca791a37e93501ae04a9f6bb5ea8d61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class RemoveRedundantStatusIndexOnCiBuilds < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    remove_concurrent_index :ci_builds, :status
  end

  def down
    add_concurrent_index :ci_builds, :status
  end
end