Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170921115009_add_project_repository_storage_index.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c5a8fd65e18e64619e8498be14821e91a8ba617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class AddProjectRepositoryStorageIndex < ActiveRecord::Migration
  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