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