From e413c68eea82dd190b2ed3449e3acb7a6689ff51 Mon Sep 17 00:00:00 2001 From: janezd Date: Mon, 23 Mar 2026 21:11:47 +0100 Subject: [PATCH] DB inheritables: Fix unique constraint --- ingest/createDb.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingest/createDb.ts b/ingest/createDb.ts index a1519d7..a26d96a 100644 --- a/ingest/createDb.ts +++ b/ingest/createDb.ts @@ -256,7 +256,7 @@ export const rebuildDatabase = async () => { type TEXT NOT NULL, extra_data TEXT, ${LAST_BUILD_ID}, - UNIQUE (path) + UNIQUE (path, type) ) `);