mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
f216c6d60b
The "backup" schema is used to rollback a failed restore. It isn't useful after a longer period of time and turns into a waste of disk space.
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
|