summaryrefslogtreecommitdiff
path: root/db/migrate/20190910103144_replace_events_index_on_group_id_with_partial_index.rb
blob: 40a7454fd2043e598de9a1ddaa8ed451857ae424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class ReplaceEventsIndexOnGroupIdWithPartialIndex < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index(:events, :group_id, where: 'group_id IS NOT NULL', name: 'index_events_on_group_id_partial')
    remove_concurrent_index_by_name(:events, 'index_events_on_group_id')
  end

  def down
    add_concurrent_index(:events, :group_id, name: 'index_events_on_group_id')
    remove_concurrent_index_by_name(:events, 'index_events_on_group_id_partial')
  end
end