summaryrefslogtreecommitdiff
path: root/db/migrate/20151016131433_add_ci_projects_gl_project_id_index.rb
blob: eb3351eb767eb88ce79a9907e1bfeca496211f44 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddCiProjectsGlProjectIdIndex < ActiveRecord::Migration
  def change
    add_index :ci_commits, :gl_project_id
  end
end