summaryrefslogtreecommitdiff
path: root/db/migrate/20151016195451_add_ci_builds_and_projects_indexes.rb
blob: 899e004d61018db427b365e8cc3543f815225a20 (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable all
class AddCiBuildsAndProjectsIndexes < ActiveRecord::Migration
  def change
    add_index :ci_projects, :gitlab_id
    add_index :ci_projects, :shared_runners_enabled

    add_index :ci_builds, :type
    add_index :ci_builds, :status
  end
end