scan musicbrainz album id to db and scrobble with it

This commit is contained in:
sentriz
2019-07-08 23:17:15 +01:00
parent 8437068e96
commit 35a4f5b42c
5 changed files with 15 additions and 11 deletions

View File

@@ -94,6 +94,7 @@ type Album struct {
TagArtistID int `sql:"default: null; type:int REFERENCES artists(id) ON DELETE CASCADE"`
TagTitle string `sql:"default: null"`
TagTitleUDec string `sql:"default: null"`
TagBrainzID string `sql:"default: null"`
TagYear int `sql:"default: null"`
Tracks []*Track
ChildCount int `sql:"-"`