Files
deckyvault/lib/db/schema/index.ts
T
adrianbonpin 50f737f686 feat(db): add performance entries and game platform support schemas
- Create performanceEntries table with FPS metrics, environment details,
  feature flags (FSR, frame gen), load times, settings JSON, and moderation
- Create gamePlatformSupport table with Proton/anti-cheat status enums
  and composite unique constraint on (gameId, hardwareSlug)
- Update schema barrel export to include both new tables
2026-04-25 11:45:49 +08:00

7 lines
224 B
TypeScript

// Barrel export — will be populated as schema files are created
export * from "./games"
export * from "./gameVersions"
export * from "./hardware"
export * from "./performanceEntries"
export * from "./gamePlatformSupport"