2018-09-16 19:09:40 +02:00
|
|
|
package models
|
2018-07-18 15:17:56 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
)
|
|
|
|
|
2018-11-18 19:18:19 +01:00
|
|
|
// An image or sidecar file that belongs to a photo
|
2018-07-18 15:17:56 +02:00
|
|
|
type File struct {
|
|
|
|
gorm.Model
|
2018-09-27 08:59:53 +02:00
|
|
|
Photo *Photo
|
|
|
|
PhotoID uint
|
|
|
|
FilePrimary bool
|
|
|
|
FileMissing bool
|
2019-04-25 03:52:25 +02:00
|
|
|
FileName string `gorm:"type:varchar(4096);index"`
|
|
|
|
FileType string `gorm:"type:varchar(32)"`
|
|
|
|
FileMime string `gorm:"type:varchar(64)"`
|
2018-09-27 08:59:53 +02:00
|
|
|
FileWidth int
|
|
|
|
FileHeight int
|
|
|
|
FileOrientation int
|
|
|
|
FileAspectRatio float64
|
2019-04-25 03:52:25 +02:00
|
|
|
FileHash string `gorm:"type:varchar(128);unique_index"`
|
2018-09-27 08:59:53 +02:00
|
|
|
FilePerceptualHash string
|
|
|
|
|
|
|
|
FileNotes string `gorm:"type:text;"`
|
2018-07-18 15:17:56 +02:00
|
|
|
}
|