🐜 fix(db): Make primary_genre nullable

This commit is contained in:
Wanjohi
2025-05-11 04:23:05 +03:00
parent 82dfd6506d
commit 0cc9effdec
6 changed files with 1276 additions and 3 deletions

View File

@@ -95,7 +95,7 @@ const base_games = table("base_games")
release_date: number(),
size: json<Size>(),
description: string(),
primary_genre: string(),
primary_genre: string().optional(),
controller_support: enumeration<"full" | "unknown">(),
compatibility: enumeration<"high" | "mid" | "low" | "unknown">(),
score: number(),