socialforge/db/migrate/20091017213444_add_missing_...

10 lines
172 B
Ruby
Raw Normal View History

2013-08-01 10:33:49 +08:00
class AddMissingIndexesToTokens < ActiveRecord::Migration
def self.up
add_index :tokens, :user_id
end
def self.down
remove_index :tokens, :user_id
end
end