-- Migration 000: Schema migrations tracking table -- This must be the first migration applied. The bootstrap logic in -- database.go applies it directly (bypassing the normal migration -- loop) when the schema_migrations table does not yet exist. CREATE TABLE IF NOT EXISTS schema_migrations ( version TEXT PRIMARY KEY, applied_at DATETIME DEFAULT CURRENT_TIMESTAMP );