Files
cfw-autumn/shared/models/leafModels/leafSchema.ts
2026-06-11 09:01:10 +01:00

6 lines
264 B
TypeScript

import { pgSchema } from "drizzle-orm/pg-core";
// All leaf/chat tables live in their own `leaf` Postgres schema to keep the public
// schema tidy. Table-def files use `leafSchema.table(...)` instead of `pgTable(...)`.
export const leafSchema = pgSchema("leaf");