Added an index on milestones.title

Certain pages (e.g. the group wide issues page) filter miletones by
their title. Without an index this will result in a sequence scan on a
large dataset increasing the total loading time of a page.
This commit is contained in:
Yorick Peterse 2016-01-06 17:27:47 +01:00
parent 61561a9eeb
commit 7a240397af
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddIndexMilestonesTitle < ActiveRecord::Migration
def change
add_index :milestones, :title
end
end