summaryrefslogtreecommitdiff
path: root/db/migrate/20151002121400_add_index_for_builds.rb
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