20100128031315_add_question_id_to_items.rb 185 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class AddQuestionIdToItems < ActiveRecord::Migration def self.up add_column :items, :question_id, :integer end def self.down remove_column :items, :question_id end end