20091210212641_add_bloom_to_questions.rb 177 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class AddBloomToQuestions < ActiveRecord::Migration def self.up add_column :questions, :bloom, :text end def self.down remove_column :questions, :bloom end end