socialforge/db/migrate/20091017213757_add_missing_...

10 lines
188 B
Ruby
Raw Normal View History

2013-08-01 10:33:49 +08:00
class AddMissingIndexesToBoards < ActiveRecord::Migration
def self.up
add_index :boards, :last_message_id
end
def self.down
remove_index :boards, :last_message_id
end
end