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

class AddIndexOnStorageSizeAndProjectIdToProjectStatistics < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :project_statistics, [:storage_size, :project_id]
  end

  def down
    remove_concurrent_index :project_statistics, [:storage_size, :project_id]
  end
end