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

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :jira_imports, :label_id
  end

  def down
    remove_concurrent_index :jira_imports, :label_id
  end
end