From 1bcdb77c1d8cda5734178e5e77bd32c871a700fa Mon Sep 17 00:00:00 2001 From: Yuri Tatishchev Date: Sun, 15 Feb 2026 22:03:47 -0800 Subject: [PATCH] bump db seed version --- src/lib/db/client-db/seed.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/db/client-db/seed.ts b/src/lib/db/client-db/seed.ts index 277b0b8..f44a8dc 100644 --- a/src/lib/db/client-db/seed.ts +++ b/src/lib/db/client-db/seed.ts @@ -14,7 +14,7 @@ import { getClientDb } from "$lib/db/client-db"; * This is intended for READ-ONLY browsing. Bump the version when you ship a new * snapshot so clients refresh. */ -export const AMQ_DB_SEED_VERSION = 4; +export const AMQ_DB_SEED_VERSION = 5; const SEED_ASSET_PATH = "/data/amq.sqlite"; const seededStorageKey = (version: number) => `amq.sqlocal.seeded.v${version}`;