photoprism/internal/models/photo.go

43 lines
1.0 KiB
Go
Raw Normal View History

2018-09-16 19:09:40 +02:00
package models
2018-07-18 15:17:56 +02:00
import (
2018-08-09 23:10:05 +02:00
"time"
"github.com/jinzhu/gorm"
2018-07-18 15:17:56 +02:00
)
2018-11-06 19:02:03 +01:00
// A photo can have multiple images and sidecar files
2018-07-18 15:17:56 +02:00
type Photo struct {
gorm.Model
TakenAt time.Time
2018-10-08 09:26:05 +02:00
TakenAtChanged bool
PhotoTitle string
PhotoTitleChanged bool
PhotoDescription string `gorm:"type:text;"`
PhotoNotes string `gorm:"type:text;"`
PhotoArtist string
PhotoColors string
PhotoColor string
PhotoLuminance string
PhotoMonochrome bool
PhotoCanonicalName string
PhotoFavorite bool
PhotoLat float64
PhotoLong float64
PhotoFocalLength float64
PhotoAperture float64
Camera *Camera
CameraID uint
Lens *Lens
LensID uint
Country *Country
CountryID string
CountryChanged bool
Location *Location
LocationID uint
LocationChanged bool
Tags []*Tag `gorm:"many2many:photo_tags;"`
Files []*File
Albums []*Album `gorm:"many2many:album_photos;"`
}