feat(db): add slug column to games table

This commit is contained in:
2026-05-20 02:17:15 +08:00
parent e5f671a992
commit b835ac678f
4 changed files with 2453 additions and 0 deletions
+1
View File
@@ -49,6 +49,7 @@ export const games = pgTable(
.$defaultFn(() => crypto.randomUUID()),
steamAppId: integer("steam_app_id").unique(),
source: gameSourceEnum("source").default("steam").notNull(),
slug: text("slug").unique(),
title: text("title").notNull(),
description: text("description"),
publisher: text("publisher"),