summaryrefslogtreecommitdiff
path: root/db/migrate/20191124150431_change_label_id_index_to_include_action_on_label_events.rb
blob: bd138adc5fa3c2844830fcfd74765929ac7e6c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index(:resource_label_events, %I[label_id action])

    remove_concurrent_index(:resource_label_events, :label_id)
  end

  def down
    add_concurrent_index(:resource_label_events, :label_id)

    remove_concurrent_index(:resource_label_events, %I[label_id action])
  end
end