From 4cc8296049a13243abe6dc9164f664d609caee98 Mon Sep 17 00:00:00 2001 From: Russ Long Date: Wed, 12 Apr 2023 19:39:09 -0400 Subject: [PATCH] Fix typo --- app/Console/Commands/TabulateWinners.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/TabulateWinners.php b/app/Console/Commands/TabulateWinners.php index df3d1d5..3c52d43 100644 --- a/app/Console/Commands/TabulateWinners.php +++ b/app/Console/Commands/TabulateWinners.php @@ -142,8 +142,8 @@ class TabulateWinners extends Command ->whereNotIn('vehicle_scores.vehicle', function($query){ $query->select('vehicle')->from('car_show_winners'); }) - ->where('vehicles.year', '>=', 1943) - ->where('vehicles.year', '<=', 1967) + ->where('vehicles.year', '>=', 1968) + ->where('vehicles.year', '<=', 1997) ->where('vehicles.doNotJudge', '=', 0) ->orderBy('totalscore','desc') ->first();