mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:59:26 +08:00
11 lines
214 B
Ruby
Vendored
11 lines
214 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class RemoveOrphanedEmbeddings < ::Jobs::Scheduled
|
|
every 1.week
|
|
|
|
def execute(_args)
|
|
DiscourseAi::Embeddings::Schema.remove_orphaned_data
|
|
end
|
|
end
|
|
end
|