From 5caaeff67c643c52564881c7d2f404341836e7c8 Mon Sep 17 00:00:00 2001 From: jubnl Date: Thu, 16 Apr 2026 14:55:35 +0200 Subject: [PATCH] fix: syntax --- server/src/db/migrations.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/db/migrations.ts b/server/src/db/migrations.ts index e089da7b..ac9f230a 100644 --- a/server/src/db/migrations.ts +++ b/server/src/db/migrations.ts @@ -1614,6 +1614,7 @@ function runMigrations(db: Database.Database): void { // Migration 102: Add check_in_end column for check-in time ranges () => { try { db.exec('ALTER TABLE day_accommodations ADD COLUMN check_in_end TEXT'); } catch (err: any) { if (!err.message?.includes('duplicate column name')) throw err; } + }, // Migration 103: System notices — user tracking columns + dismissals table () => { db.exec(`ALTER TABLE users ADD COLUMN first_seen_version TEXT NOT NULL DEFAULT '0.0.0'`);