✂️ Comment out unused backup schedule commands in console.php to disable them without deletion

This commit is contained in:
HolgerHatGarKeineNode
2026-01-25 18:21:35 +01:00
parent f52e283f52
commit fe2f321a12

View File

@@ -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');