20100617162132_make_catchup_default.rb 237 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class MakeCatchupDefault < ActiveRecord::Migration def self.up change_column :questions, :uses_catchup, :boolean, :default => true end def self.down change_column :questions, :uses_catchup, :boolean, :default => false end end