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

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index(:elasticsearch_indexed_namespaces, :created_at)
  end

  def down
    remove_concurrent_index(:elasticsearch_indexed_namespaces, :created_at)
  end
end