fix(13-02): auto-resolve phantom playlist tracks after library scan

- Add phantom_file_path column to playlist_tracks (migration 7)
- Store original file_path during RemoveLibrary phantom metadata population
- After each successful scan, UPDATE phantom tracks whose phantom_file_path
  now matches an audio_files row, re-linking them and clearing phantom metadata
- Update schema file, sqlc generated code, and database test for new column
This commit is contained in:
2026-03-16 12:29:06 -04:00
parent f05d2bb603
commit 93262b9ae0
7 changed files with 116 additions and 6 deletions
+4 -3
View File
@@ -91,6 +91,7 @@ func TestMigration6FreshDB(t *testing.T) {
"phantom_duration_ms": false,
"phantom_genre": false,
"phantom_cover_art_path": false,
"phantom_file_path": false,
}
audioFileIDNullable := false
@@ -171,7 +172,7 @@ func TestMigration6FreshDB(t *testing.T) {
t.Error("track_metadata VIEW does not contain library_id")
}
// Verify user_version >= 6.
// Verify user_version >= 7.
var version int
verRows, err := db.QueryContext("PRAGMA user_version")
@@ -193,8 +194,8 @@ func TestMigration6FreshDB(t *testing.T) {
_ = verRows.Close()
if version < 6 {
t.Errorf("user_version = %d, want >= 6", version)
if version < 7 {
t.Errorf("user_version = %d, want >= 7", version)
}
// Verify libraries table has only the sentinel row on fresh DB.