diff --git a/db/migrate/20150325183400_fix_group_user_count.rb b/db/migrate/20150325183400_fix_group_user_count.rb new file mode 100644 index 000000000..96988a628 --- /dev/null +++ b/db/migrate/20150325183400_fix_group_user_count.rb @@ -0,0 +1,5 @@ +class FixGroupUserCount < ActiveRecord::Migration + def change + execute "UPDATE groups g SET user_count = (SELECT COUNT(user_id) FROM group_users gu WHERE gu.group_id = g.id)" + end +end