Added option to make favorite groups public

This commit is contained in:
BrokenEagle
2017-12-18 17:29:26 -08:00
parent f5cb49d9bf
commit 5a602c60eb
4 changed files with 27 additions and 13 deletions

View File

@@ -0,0 +1,7 @@
class AddIsPublicToFavoriteGroups < ActiveRecord::Migration
def change
FavoriteGroup.without_timeout do
add_column :favorite_groups, :is_public, :boolean, default: false, null: false
end
end
end