summaryrefslogtreecommitdiff
path: root/db/migrate/20191112214305_add_indexes_for_projects_api_default_params.rb
blob: 3893c0422c70f38a32facad8eff0313c9f332362 (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 AddIndexesForProjectsApiDefaultParams < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :projects, %i(visibility_level created_at id)
    remove_concurrent_index_by_name :projects, 'index_projects_on_visibility_level'
  end

  def down
    add_concurrent_index :projects, :visibility_level
    remove_concurrent_index :projects, %i(visibility_level created_at id)
  end
end