Browse Source

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
tags/1.2.0
Jean-Philippe Lang 13 years ago
parent
commit
eda002d0df
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      db/migrate/20110401192910_add_index_to_users_type.rb

+ 9
- 0
db/migrate/20110401192910_add_index_to_users_type.rb 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

Loading…
Cancel
Save