Skip to content

Commit

Permalink
Merge pull request #731 from daveroverts/activity-log-cleanup
Browse files Browse the repository at this point in the history
fix(console): Fix for activity-log not cleaning up every day
  • Loading branch information
daveroverts authored Sep 28, 2023
2 parents e2a9cb0 + 7de6dd1 commit c487d2b
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 c487d2b

Please sign in to comment.