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

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :projects, [:creator_id, :created_at, :id]
  end

  def down
    remove_concurrent_index :projects, [:creator_id, :created_at, :id]
  end
end