redmine/db/migrate/20110401192910_add_index_to_users_type.rb

10 lines
163 B
Ruby

class AddIndexToUsersType < ActiveRecord::Migration[4.2]
def self.up
add_index :users, :type
end
def self.down
remove_index :users, :type
end
end