discourse/db/migrate/20150325183400_fix_group_user_count.rb

6 lines
189 B
Ruby
Raw Normal View History

2015-03-26 02:39:43 +08:00
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