##// END OF EJS Templates
Adds an index on users.type for faster retrieval of groups....
Jean-Philippe Lang -
r5168:eda002d0dfd5
parent child
Show More
@@ -0,0 +1,9
1 class AddIndexToUsersType < ActiveRecord::Migration
2 def self.up
3 add_index :users, :type
4 end
5
6 def self.down
7 remove_index :users, :type
8 end
9 end
General Comments 0
You need to be logged in to leave comments. Login now