summaryrefslogtreecommitdiff
path: root/db/migrate/20170921115009_add_project_repository_storage_index.rb
blob: 9e1f5052f2877256b5ba9ea3eafb57fa873437bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class AddProjectRepositoryStorageIndex < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index(*index_spec) unless index_exists?(*index_spec)
  end

  def down
    remove_concurrent_index(*index_spec) if index_exists?(*index_spec)
  end

  def index_spec
    [:projects, :repository_storage]
  end
end