fix(db): correct migration 0012 timestamp — drizzle skips when < last applied
Build & Deploy (Nix) / build-and-deploy (backend) (push) Successful in 1m36s
Build & Deploy (Nix) / build-and-deploy (discord-gateway) (push) Successful in 2m30s
Build & Deploy (Nix) / build-and-deploy (proxy) (push) Successful in 2m33s
Build & Deploy (Nix) / build-and-deploy (backend) (push) Successful in 1m36s
Build & Deploy (Nix) / build-and-deploy (discord-gateway) (push) Successful in 2m30s
Build & Deploy (Nix) / build-and-deploy (proxy) (push) Successful in 2m33s
Drizzle 0.45 migrate() runs only migrations with folderMillis > the latest created_at in __drizzle_migrations. Hand-written when was 1781580000000 (June 16) < stored 1781672400000 (June 17), so 0012 was silently skipped and the embedding column never created. Bumped when to now; migrator will apply it on next deploy.
This commit is contained in:
@@ -89,7 +89,7 @@
|
|||||||
{
|
{
|
||||||
"idx": 12,
|
"idx": 12,
|
||||||
"version": "7",
|
"version": "7",
|
||||||
"when": 1781580000000,
|
"when": 1785500000000,
|
||||||
"tag": "0012_add_embedding_to_text_cache",
|
"tag": "0012_add_embedding_to_text_cache",
|
||||||
"breakpoints": true
|
"breakpoints": true
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user