From 35af66c2223b0b6d2f9b2fcd5625788720e61d9d Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 27 Mar 2025 13:16:17 +0100 Subject: [PATCH] Lib: Add started_active field to Driver schema --- src/lib/schema.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/schema.ts b/src/lib/schema.ts index 460fff3..025236c 100644 --- a/src/lib/schema.ts +++ b/src/lib/schema.ts @@ -41,6 +41,7 @@ export interface Driver { headshot_url?: string; team: string; active: boolean; + started_active: boolean; } export interface Race {