summaryrefslogtreecommitdiff
path: root/db/migrate/20180425205249_add_index_constraints_to_pipeline_iid.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20180425205249_add_index_constraints_to_pipeline_iid.rb')
-rw-r--r--db/migrate/20180425205249_add_index_constraints_to_pipeline_iid.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/migrate/20180425205249_add_index_constraints_to_pipeline_iid.rb b/db/migrate/20180425205249_add_index_constraints_to_pipeline_iid.rb
index 7daa7197b7c..3fa59b44d5d 100644
--- a/db/migrate/20180425205249_add_index_constraints_to_pipeline_iid.rb
+++ b/db/migrate/20180425205249_add_index_constraints_to_pipeline_iid.rb
@@ -6,10 +6,10 @@ class AddIndexConstraintsToPipelineIid < ActiveRecord::Migration
disable_ddl_transaction!
def up
- add_concurrent_index :ci_pipelines, [:project_id, :iid_per_project], unique: true, where: 'iid_per_project IS NOT NULL'
+ 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_per_project]
+ remove_concurrent_index :ci_pipelines, [:project_id, :iid]
end
end