Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20151020173906_add_ci_builds_index_for_status.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 81a31e46ff88f95b349215bf6b3f84bc860718d4 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddCiBuildsIndexForStatus < ActiveRecord::Migration
  def change
    add_index :ci_builds, [:commit_id, :status, :type]
  end
end