photoprism/internal/models/album.go
2018-09-16 19:09:40 +02:00

12 lines
158 B
Go

package models
import (
"github.com/jinzhu/gorm"
)
type Album struct {
gorm.Model
AlbumName string
Photos []Photo `gorm:"many2many:album_photos;"`
}