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

20151002121400_add_index_for_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd945c54540a9f306befd2ca231c18dd7f98927a (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddIndexForBuilds < ActiveRecord::Migration
  def up
    add_index :ci_builds, [:commit_id, :stage_idx, :created_at]
  end
end