9 lines
145 B
Go
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"`
|
|
}
|