summaryrefslogtreecommitdiff
path: root/db/migrate/20170216135621_add_index_for_latest_successful_pipeline.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170216135621_add_index_for_latest_successful_pipeline.rb')
-rw-r--r--db/migrate/20170216135621_add_index_for_latest_successful_pipeline.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/db/migrate/20170216135621_add_index_for_latest_successful_pipeline.rb b/db/migrate/20170216135621_add_index_for_latest_successful_pipeline.rb
index 7b1e687977b..65adc90c2c1 100644
--- a/db/migrate/20170216135621_add_index_for_latest_successful_pipeline.rb
+++ b/db/migrate/20170216135621_add_index_for_latest_successful_pipeline.rb
@@ -4,7 +4,11 @@ class AddIndexForLatestSuccessfulPipeline < ActiveRecord::Migration
disable_ddl_transaction!
- def change
- add_concurrent_index(:ci_commits, [:gl_project_id, :ref, :status])
+ def up
+ add_concurrent_index :ci_commits, [:gl_project_id, :ref, :status]
+ end
+
+ def down
+ remove_index :ci_commits, [:gl_project_id, :ref, :status] if index_exists? :ci_commits, [:gl_project_id, :ref, :status]
end
end