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

20201112215028_add_partitioned_audit_event_indexes.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8b2833474b6a60a99a78b058f1aad340ab7a803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

class AddPartitionedAuditEventIndexes < ActiveRecord::Migration[6.0]
  include Gitlab::Database::PartitioningMigrationHelpers

  DOWNTIME = false

  CREATED_AT_AUTHOR_ID_INDEX_NAME = 'analytics_index_audit_events_part_on_created_at_and_author_id'
  ENTITY_ID_DESC_INDEX_NAME = 'idx_audit_events_part_on_entity_id_desc_author_id_created_at'

  disable_ddl_transaction!

  def up
    add_concurrent_partitioned_index :audit_events_part_5fc467ac26,
      [:created_at, :author_id],
      name: CREATED_AT_AUTHOR_ID_INDEX_NAME

    add_concurrent_partitioned_index :audit_events_part_5fc467ac26,
      [:entity_id, :entity_type, :id, :author_id, :created_at],
      order: { id: :desc },
      name: ENTITY_ID_DESC_INDEX_NAME
  end

  def down
    remove_concurrent_partitioned_index_by_name :audit_events_part_5fc467ac26, ENTITY_ID_DESC_INDEX_NAME

    remove_concurrent_partitioned_index_by_name :audit_events_part_5fc467ac26, CREATED_AT_AUTHOR_ID_INDEX_NAME
  end
end