debian-mirror-gitlab/db/migrate/20180425205249_add_index_constraints_to_pipeline_iid.rb

16 lines
364 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class AddIndexConstraintsToPipelineIid < ActiveRecord::Migration[4.2]
2018-11-08 19:23:39 +05:30
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