1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-08-26 17:58:38 +02:00
redmine/db/migrate/20091017213444_add_missing_indexes_to_tokens.rb

10 satır
172 B
Ruby
Ham Normal Görünüm Geçmiş

class AddMissingIndexesToTokens < ActiveRecord::Migration
def self.up
add_index :tokens, :user_id
end
def self.down
remove_index :tokens, :user_id
end
end