photoprism/internal/models/album.go

17 lines
335 B
Go
Raw Normal View History

2018-09-16 17:09:40 +00:00
package models
2018-07-18 13:17:56 +00:00
import (
"github.com/jinzhu/gorm"
)
type Album struct {
gorm.Model
AlbumSlug string
AlbumName string
AlbumDescription string `gorm:"type:text;"`
AlbumNotes string `gorm:"type:text;"`
AlbumPhoto *Photo
AlbumPhotoID uint
Photos []Photo `gorm:"many2many:album_photos;"`
2018-07-18 13:17:56 +00:00
}