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(); })();