1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-07-27 20:19:39 +02:00
redmine/db/migrate/20110401192910_add_index_to_users_type.rb

10 satır
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