To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / db / migrate / 20091017212644_add_missing_indexes_to_messages.rb @ 443:350acce374a2

History | View | Annotate | Download (265 Bytes)

1
class AddMissingIndexesToMessages < ActiveRecord::Migration
2
  def self.up
3
    add_index :messages, :last_reply_id
4
    add_index :messages, :author_id
5
  end
6

    
7
  def self.down
8
    remove_index :messages, :last_reply_id
9
    remove_index :messages, :author_id
10
  end
11
end