Remove old tags from models

This commit is contained in:
Deluan
2020-01-17 19:36:50 -05:00
parent 123f543a94
commit 035fdaeb96
4 changed files with 6 additions and 7 deletions
+3 -3
View File
@@ -5,12 +5,12 @@ import "time"
type Album struct {
ID string
Name string
ArtistID string `parent:"artist"`
ArtistID string
CoverArtPath string
CoverArtId string
Artist string
AlbumArtist string
Year int `idx:"Year"`
Year int
Compilation bool
Starred bool
PlayCount int
@@ -19,7 +19,7 @@ type Album struct {
Duration int
Rating int
Genre string
StarredAt time.Time `idx:"Starred"`
StarredAt time.Time
CreatedAt time.Time
UpdatedAt time.Time
}