- 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
7 lines
224 B
TypeScript
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"
|