Allow admins to choose if groups are visible or not.

This commit is contained in:
Robin Ward
2014-04-22 16:43:46 -04:00
parent 8538e31fb4
commit af877781b7
11 changed files with 43 additions and 19 deletions

View File

@@ -0,0 +1,5 @@
class AddVisibileToGroups < ActiveRecord::Migration
def change
add_column :groups, :visible, :boolean, default: true, null: false
end
end