1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 23:11:12 +00:00

Adds an index on issue_id to changesets_issues (#24433).

git-svn-id: http://svn.redmine.org/redmine/trunk@16007 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2016-11-26 09:51:32 +00:00
parent 508fc4f454
commit a373e304b3

View File

@ -0,0 +1,5 @@
class AddIndexOnChangesetsIssuesIssueId < ActiveRecord::Migration
def change
add_index :changesets_issues, :issue_id
end
end