Adds an index on users.type for faster retrieval of groups.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5288 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2011-04-01 19:32:07 +00:00 committed by Eric Davis
parent 2431d830b1
commit ed867c4a7f
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
class AddIndexToUsersType < ActiveRecord::Migration
def self.up
add_index :users, :type
end
def self.down
remove_index :users, :type
end
end