summaryrefslogtreecommitdiff
path: root/db/migrate/20200930131343_add_index_on_project_id_and_sha_to_deployments.rb
blob: 19a536f8f6e31b0ea8bfda0a947ff0dfd5a94613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddIndexOnProjectIdAndShaToDeployments < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers
  DOWNTIME = false
  INDEX_NAME = 'index_deployments_on_project_id_sha'

  disable_ddl_transaction!

  def up
    add_concurrent_index :deployments, [:project_id, :sha], name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name(:deployments, INDEX_NAME)
  end
end