// Barrel export for the full Drizzle schema. // Every schema file MUST be re-exported here so `import * as schema` // in src/db/index.ts sees the complete table set. // // BUG FIXED AT BASELINE: ./logs was previously NOT exported here, so // Drizzle never knew about feeds / sleeps / vaccinations / growth / // medications / diapers. That is why those tables drifted unnoticed. export * from "./auth"; export * from "./family"; export * from "./audit"; export * from "./media"; export * from "./logs"; export * from "./medical"; export * from "./admin"; export * from "./support"; export * from "./ai"; export * from "./affiliate";