Clean up debug logging

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
primal
2026-02-01 19:11:49 -05:00
parent 8a9001c02c
commit f2978e7ab5
+1
View File
@@ -262,6 +262,7 @@ func OpenDatabase(connString string) (*DB, error) {
pool.Close()
return nil, fmt.Errorf("failed to create schema: %v", err)
}
fmt.Println(" Schema OK")
// Migration: add miss_count column if not exists
pool.Exec(ctx, "ALTER TABLE domains ADD COLUMN IF NOT EXISTS miss_count INTEGER NOT NULL DEFAULT 0")