Files
gonic/model/artist.go
2019-03-29 17:14:33 +00:00

9 lines
140 B
Go

package model
// Artist represents the artists table
type Artist struct {
BaseWithUUID
Albums []Album
Name string `gorm:"unique;n"`
}