1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-07-27 20:19:39 +02:00
redmine/db/migrate/20110401192910_add_index_to_users_type.rb

10 linhas
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