Merge branch 'refactor_user_page'

This commit is contained in:
Sam
2015-12-20 16:50:33 +11:00
38 changed files with 371 additions and 194 deletions

View File

@@ -0,0 +1,15 @@
class AddHasMessagesToGroups < ActiveRecord::Migration
def up
add_column :groups, :has_messages, :boolean, default: false, null: false
execute <<SQL
UPDATE groups g SET has_messages = true
WHERE exists(SELECT group_id FROM topic_allowed_groups WHERE group_id = g.id)
SQL
end
def down
remove_column :groups, :has_messages
end
end