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: c3f0e0606dab6b46be92e8993a3b815aea52f4af (plain)
1
2
3
4
5
class AddCiBuildsIndexForStatus < ActiveRecord::Migration
  def change
    add_index :ci_builds, [:commit_id, :status, :type]
  end
end