discourse/lib/jobs/ensure_db_consistency.rb
Sam a2cca2540e some minimal site settings diags
fix issue where days_visited was totally out of sync
2013-04-05 17:47:54 +11:00

9 lines
216 B
Ruby

module Jobs
# checks to see if any users need to be promoted
class EnsureDbConsistency < Jobs::Base
def execute(args)
TopicUser.ensure_consistency!
UserVisit.ensure_consistency!
end
end
end