From fe2f321a1265f0515f213aa4a86895f7f8fcfcab Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Sun, 25 Jan 2026 18:21:35 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=82=EF=B8=8F=20Comment=20out=20unused=20b?= =?UTF-8?q?ackup=20schedule=20commands=20in=20`console.php`=20to=20disable?= =?UTF-8?q?=20them=20without=20deletion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/console.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/console.php b/routes/console.php index da92d98..f409464 100644 --- a/routes/console.php +++ b/routes/console.php @@ -3,6 +3,6 @@ use App\Console\Commands\Nostr\SyncProfiles; use Illuminate\Support\Facades\Schedule; -Schedule::command('backup:clean')->daily()->at('01:00'); -Schedule::command('backup:run')->daily()->at('01:30'); +// Schedule::command('backup:clean')->daily()->at('01:00'); +// Schedule::command('backup:run')->daily()->at('01:30'); Schedule::command(SyncProfiles::class)->daily()->at('00:30');