20150515195059_change_reading_group_attributes_public_default.rb 246 Bytes
class ChangeReadingGroupAttributesPublicDefault < ActiveRecord::Migration
  def up
    change_column_default :reading_group_attributes, :public, true
  end

  def down
    change_column_default :reading_group_attributes, :public, false
  end
end