feat(db): add artist_similarity_unmatched schema (migration 0012)

This commit is contained in:
2026-05-01 05:50:22 -04:00
parent cf1b75ca12
commit 2ca09749d9
6 changed files with 73 additions and 0 deletions
+9
View File
@@ -216,6 +216,15 @@ type ArtistSimilarity struct {
FetchedAt pgtype.Timestamptz
}
type ArtistSimilarityUnmatched struct {
SeedArtistID pgtype.UUID
CandidateMbid string
CandidateName string
Score float64
Source string
FetchedAt pgtype.Timestamptz
}
type ContextualLike struct {
ID pgtype.UUID
UserID pgtype.UUID