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

9 lines
145 B
Go

package model
// Artist represents the artists table
type Artist struct {
Base
Albums []Album
Name string `gorm:"not null;unique_index"`
}