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

class IndexBatchedMigrationJobsByMaxValue < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  INDEX_NAME = 'index_migration_jobs_on_migration_id_and_max_value'

  def up
    add_concurrent_index :batched_background_migration_jobs, %i(batched_background_migration_id max_value), name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :batched_background_migration_jobs, INDEX_NAME
  end
end