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
This commit is contained in:
2026-04-25 11:45:49 +08:00
parent 63a6e8b7d6
commit 50f737f686
3 changed files with 114 additions and 3 deletions
+2 -3
View File
@@ -2,6 +2,5 @@
export * from "./games"
export * from "./gameVersions"
export * from "./hardware"
// TODO: uncomment when files are created in Chunk 3
// export * from "./performanceEntries"
// export * from "./gamePlatformSupport"
export * from "./performanceEntries"
export * from "./gamePlatformSupport"