mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 18:33:37 +08:00
12 lines
199 B
Ruby
12 lines
199 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
class DropBackupSchema < ::Jobs::Scheduled
|
||
|
every 1.day
|
||
|
|
||
|
def execute(_)
|
||
|
BackupRestore::DatabaseRestorer.drop_backup_schema
|
||
|
end
|
||
|
end
|
||
|
end
|