20100517230848_add_question_index_to_appearances_table.rb 197 Bytes
class AddQuestionIndexToAppearancesTable < ActiveRecord::Migration
  def self.up
	  add_index :appearances, :question_id
  end

  def self.down
	  remove_index :appearances, :question_id
  end
end