summaryrefslogtreecommitdiff
path: root/db/migrate/20170216141440_drop_index_for_builds_project_status.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170216141440_drop_index_for_builds_project_status.rb')
-rw-r--r--db/migrate/20170216141440_drop_index_for_builds_project_status.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20170216141440_drop_index_for_builds_project_status.rb b/db/migrate/20170216141440_drop_index_for_builds_project_status.rb
index 906711b9f3f..a2839f52d89 100644
--- a/db/migrate/20170216141440_drop_index_for_builds_project_status.rb
+++ b/db/migrate/20170216141440_drop_index_for_builds_project_status.rb
@@ -3,6 +3,6 @@ class DropIndexForBuildsProjectStatus < ActiveRecord::Migration
DOWNTIME = false
def change
- remove_index(:ci_commits, [:gl_project_id, :status])
+ remove_index(:ci_commits, column: [:gl_project_id, :status])
end
end