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

20151016131433_add_ci_projects_gl_project_id_index.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9290fef11a2e2fa37bf61545851097c42931faf (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddCiProjectsGlProjectIdIndex < ActiveRecord::Migration[4.2]
  def change
    add_index :ci_commits, :gl_project_id
  end
end