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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :ci_pipelines, [:project_id, :iid], unique: true, where: 'iid IS NOT NULL'
  end

  def down
    remove_concurrent_index :ci_pipelines, [:project_id, :iid]
  end
end