11 lines
172 B
Go
11 lines
172 B
Go
package model
|
|
|
|
// Cover represents the covers table
|
|
type Cover struct {
|
|
Base
|
|
Album Album
|
|
AlbumID uint
|
|
Image []byte
|
|
Path string `gorm:"not null;unique_index"`
|
|
}
|