mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-12 00:53:27 +00:00
12 lines
214 B
Ruby
12 lines
214 B
Ruby
|
# 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
|