20100420130849_add_catchup_bool_to_questions.rb 217 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class AddCatchupBoolToQuestions < ActiveRecord::Migration def self.up add_column :questions, :uses_catchup, :boolean, :default => false end def self.down remove_column :questions, :uses_catchup end end