discourse/db/migrate/20150325183400_fix_group_user_count.rb

8 lines
225 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class FixGroupUserCount < ActiveRecord::Migration[4.2]
2015-03-25 13:39:43 -05:00
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