From 735787b18316cd032fc43e4d8fdd4be749728a30 Mon Sep 17 00:00:00 2001 From: Owen Date: Wed, 16 Sep 2026 10:11:20 -0400 Subject: [PATCH] Fix #3778 --- server/setup/scriptsSqlite/1.23.0.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/setup/scriptsSqlite/1.23.0.ts b/server/setup/scriptsSqlite/1.23.0.ts index a4f2702eb..4dddd9ef2 100644 --- a/server/setup/scriptsSqlite/1.23.0.ts +++ b/server/setup/scriptsSqlite/1.23.0.ts @@ -16,13 +16,13 @@ export default async function migration() { db.transaction(() => { db.prepare( ` - ALTER TABLE 'newt' ADD COLUMN IF NOT EXISTS 'agent' text; + ALTER TABLE 'newt' ADD COLUMN 'agent' text; ` ).run(); db.prepare( ` - ALTER TABLE 'newt' ADD COLUMN IF NOT EXISTS 'agentVersion' text; + ALTER TABLE 'newt' ADD COLUMN 'agentVersion' text; ` ).run(); })();