feat(db): add slug column to games table
This commit is contained in:
@@ -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"),
|
||||
|
||||
Reference in New Issue
Block a user