From fd8a2770da8d8cd53e621c3dc32fccc71a8e9a00 Mon Sep 17 00:00:00 2001 From: Julian Prieber <60265788+JulianPrieber@users.noreply.github.com> Date: Wed, 25 May 2022 16:59:52 +0200 Subject: [PATCH] Update backup.php --- config/backup.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/backup.php b/config/backup.php index a066fc8..13056a8 100644 --- a/config/backup.php +++ b/config/backup.php @@ -210,33 +210,33 @@ return [ /* * The number of days for which backups must be kept. */ - 'keep_all_backups_for_days' => 7, + 'keep_all_backups_for_days' => 0, /* * The number of days for which daily backups must be kept. */ - 'keep_daily_backups_for_days' => 16, + 'keep_daily_backups_for_days' => 0, /* * The number of weeks for which one weekly backup must be kept. */ - 'keep_weekly_backups_for_weeks' => 8, + 'keep_weekly_backups_for_weeks' => 0, /* * The number of months for which one monthly backup must be kept. */ - 'keep_monthly_backups_for_months' => 4, + 'keep_monthly_backups_for_months' => 0, /* * The number of years for which one yearly backup must be kept. */ - 'keep_yearly_backups_for_years' => 2, + 'keep_yearly_backups_for_years' => 0, /* * After cleaning up the backups remove the oldest backup until * this amount of megabytes has been reached. */ - 'delete_oldest_backups_when_using_more_megabytes_than' => 5000, + 'delete_oldest_backups_when_using_more_megabytes_than' => 0, ], ],