From 3fea230d586296adf4fbcba803bdedc909eefa9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Falc=C3=B3n?= Date: Tue, 5 May 2026 09:59:54 +0100 Subject: [PATCH] chore: Don't run `demo:reset` command daily (#353) Removes daily schedule for `demo:reset` command. --- routes/console.php | 1 - 1 file changed, 1 deletion(-) diff --git a/routes/console.php b/routes/console.php index 317f621d..92a8f268 100644 --- a/routes/console.php +++ b/routes/console.php @@ -2,7 +2,6 @@ use Illuminate\Support\Facades\Schedule; -Schedule::command('demo:reset')->twiceDaily(); Schedule::command('budgets:generate-periods')->daily(); Schedule::command('banking:sync')->everySixHours(); Schedule::command('banks:check-logos')->weekly();