Lib: Update team database schema (add logo, color)

This commit is contained in:
2024-12-18 14:58:28 +01:00
parent c954b0f3b0
commit 49112280de
4 changed files with 49 additions and 24 deletions

View File

@ -15,15 +15,18 @@ export interface User {
export interface Team {
id: string;
name: string;
banner: string;
banner_url?: string;
logo: string;
logo_url?: string;
color: string;
}
export interface Driver {
id: string;
code: string;
firstname: string;
lastname: string;
code: string;
headshot: string;
headshot_url?: string;
team: string;