mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:13:22 +08:00
6 lines
189 B
Ruby
6 lines
189 B
Ruby
|
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
|