- Move auth schema from auth-schema.ts to lib/db/schema/auth.ts - Export auth tables (user, session, account, verification, passkey) via barrel - Add FK from performanceEntries.userId to user.id - Generate and apply migration for auth tables + user FK - Remove unused echarts dependency
8 lines
247 B
TypeScript
8 lines
247 B
TypeScript
// Barrel export — will be populated as schema files are created
|
|
export * from "./auth"
|
|
export * from "./games"
|
|
export * from "./gameVersions"
|
|
export * from "./hardware"
|
|
export * from "./performanceEntries"
|
|
export * from "./gamePlatformSupport"
|