redmine/db/migrate/20091017213444_add_missing_indexes_to_tokens.rb

10 lines
172 B
Ruby
Raw Normal View History

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