2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/db/migrate/20150325183400_fix_group_user_count.rb

5 lines
194 B
Ruby

class FixGroupUserCount < ActiveRecord::Migration[4.2]
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