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

class AddIndexOnEnvironmentsWithState < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :environments, [:project_id, :state]
  end

  def down
    remove_concurrent_index :environments, [:project_id, :state]
  end
end