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: 52a47aa9c54debafcad6fd7e5936b6380a01cf48 (plain)
1
2
3
4
5
class AddCiProjectsGlProjectIdIndex < ActiveRecord::Migration
  def change
    add_index :ci_commits, :gl_project_id
  end
end