discourse/lib/jobs/ensure_db_consistency.rb

13 lines
310 B
Ruby
Raw Normal View History

module Jobs
2013-05-08 01:20:38 -04:00
# various consistency checks
class EnsureDbConsistency < Jobs::Base
def execute(args)
TopicUser.ensure_consistency!
UserVisit.ensure_consistency!
2013-05-08 01:20:38 -04:00
Group.refresh_automatic_groups!
Notification.ensure_consistency!
UserAction.ensure_consistency!
end
end
end