Browse Source

fix(db): correct 0006 migration journal timestamp for drizzle-kit migrate

Drizzle SQLite migrator only runs files whose journal "when" is greater
than the latest row in __drizzle_migrations; 0006 was generated with a
smaller timestamp than 0005 and was silently skipped.

Made-with: Cursor
main
npmrun 6 hours ago
parent
commit
1b47809e30
  1. 2
      packages/drizzle-pkg/migrations/meta/_journal.json

2
packages/drizzle-pkg/migrations/meta/_journal.json

@ -47,7 +47,7 @@
{
"idx": 6,
"version": "6",
"when": 1776527990650,
"when": 1776800000000,
"tag": "0006_left_kitty_pryde",
"breakpoints": true
}

Loading…
Cancel
Save