Skip to content

Commit

Permalink
fix(console): Fix for activity-log not cleaning up every day
Browse files Browse the repository at this point in the history
  • Loading branch information
daveroverts authored Sep 27, 2023
1 parent 22e9745 commit 7de6dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ protected function schedule(Schedule $schedule)
{
$schedule->command(EventCleanupReservationsCommand::class)->everyFiveMinutes();

$schedule->command('activitylog:clean')->daily();
$schedule->command('activitylog:clean --force')->daily();

if (config('telescope.enabled')) {
$schedule->command('telescope:prune')->daily();
Expand Down

0 comments on commit 7de6dd1

Please sign in to comment.