mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 09:44:22 +08:00
11 lines
234 B
Ruby
11 lines
234 B
Ruby
module Jobs
|
|
# various consistency checks
|
|
class EnsureDbConsistency < Jobs::Base
|
|
def execute(args)
|
|
TopicUser.ensure_consistency!
|
|
UserVisit.ensure_consistency!
|
|
Group.refresh_automatic_groups!
|
|
end
|
|
end
|
|
end
|