Drizzle.Config

_archivesourcetypescript
Path: _archive/loom-stale-pre-sprint-snapshot/drizzle.config.tsRelative: loom-stale-pre-sprint-snapshot/drizzle.config.tsSubproject: _archiveCategory: archived
Lines: 16Bytes: 550Imports: 1Exports: 1

Content Preview

  1. import type { Config } from "drizzle-kit";
  2. /**
  3. * Drizzle is the typed query layer over D1 (src/db/schema.ts).
  4. * Migrations are HAND-AUTHORED SQL in ./migrations (drizzle-kit cannot emit
  5. * FTS5 virtual tables or triggers) and applied with:
  6. * bun run db:migrate:local (wrangler d1 migrations apply loom-db --local)
  7. * bun run db:migrate:remote
  8. * This config exists so `drizzle-kit check`/studio tooling can read the schema.
  9. */
  10. export default {
  11. schema: "./src/db/schema.ts",
  12. out: "./mig