summaryrefslogtreecommitdiff
path: root/db/migrate/20180418053107_add_index_to_ci_job_artifacts_file_store.rb
blob: ac91624c3d54e484430d3119e63785ae7f853eb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class AddIndexToCiJobArtifactsFileStore < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :ci_job_artifacts, :file_store
  end

  def down
    # rubocop:disable Migration/RemoveIndex
    remove_index :ci_job_artifacts, :file_store if index_exists?(:ci_job_artifacts, :file_store)
  end
end