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