debian-mirror-gitlab/db/migrate/20151016131433_add_ci_projects_gl_project_id_index.rb
2016-06-16 23:09:34 +05:30

7 lines
149 B
Ruby

# rubocop:disable all
class AddCiProjectsGlProjectIdIndex < ActiveRecord::Migration
def change
add_index :ci_commits, :gl_project_id
end
end