Files
gonic/model/album.go
2019-03-30 22:28:17 +00:00

11 lines
171 B
Go

package model
// Album represents the albums table
type Album struct {
Base
Artist Artist
ArtistID uint
Title string `gorm:"not null;index"`
Tracks []Track
}