debian-mirror-gitlab/db/migrate/20170921115009_add_project_repository_storage_index.rb
2018-03-17 18:26:18 +05:30

20 lines
400 B
Ruby

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