photoprism/internal/models/album.go

12 lines
158 B
Go
Raw Normal View History

2018-09-16 19:09:40 +02:00
package models
2018-07-18 15:17:56 +02:00
import (
"github.com/jinzhu/gorm"
)
type Album struct {
gorm.Model
AlbumName string
Photos []Photo `gorm:"many2many:album_photos;"`
2018-07-18 15:17:56 +02:00
}