feat(db): add core Drizzle schema tables (hardware, games, gameVersions)
- Create lib/db/schema/ directory with barrel export index.ts - Add hardware table with device_type enum (handled/console) - Add games table with Steam metadata, sync fields, and JSON genres - Add game_versions table with composite unique (gameId, buildId) and cascade delete Refs: Chunk 2 of database schema implementation
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { pgEnum, pgTable, text, timestamp } from "drizzle-orm/pg-core"
|
||||
|
||||
export const deviceTypeEnum = pgEnum("device_type", ["handled", "console"])
|
||||
|
||||
export const hardware = pgTable("hardware", {
|
||||
slug: text("slug").primaryKey(),
|
||||
name: text("name").notNull(),
|
||||
deviceType: deviceTypeEnum("device_type").notNull(),
|
||||
createdAt: timestamp("created_at").defaultNow().notNull(),
|
||||
})
|
||||
Reference in New Issue
Block a user