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

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :deployments, [:project_id, :status, :created_at]
  end

  def down
    remove_concurrent_index :deployments, [:project_id, :status, :created_at]
  end
end