view db/migrate/20091017213757_add_missing_indexes_to_boards.rb @ 745:4acfc770e79f feature_14

Added method that returns all projects tags.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 08 Nov 2011 11:37:37 +0000
parents 513646585e45
children
line wrap: on
line source
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