summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221221110733_remove_temp_index_for_project_statistics_upload_size_migration.rb
blob: 1df6ad274f9b9c7a9aaff086c4a51db2e9cf0625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class RemoveTempIndexForProjectStatisticsUploadSizeMigration < Gitlab::Database::Migration[2.1]
  INDEX_NAME = 'tmp_index_project_statistics_uploads_size'
  TABLE_NAME = 'project_statistics'
  disable_ddl_transaction!

  def up
    remove_concurrent_index_by_name :project_statistics, INDEX_NAME
  end

  def down
    add_concurrent_index :project_statistics, [:project_id],
      name: INDEX_NAME,
      where: "uploads_size <> 0"
  end
end