20100317161212_add_question_index_to_prompts.rb 180 Bytes
class AddQuestionIndexToPrompts < ActiveRecord::Migration
  def self.up
	  add_index :prompts, :question_id
  end

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