28 lines
803 B
Go
28 lines
803 B
Go
package models
|
|
|
|
import (
|
|
"github.com/jinzhu/gorm"
|
|
)
|
|
|
|
// An image or sidecar file that belongs to a photo
|
|
type File struct {
|
|
gorm.Model
|
|
Photo *Photo
|
|
PhotoID uint
|
|
FilePrimary bool
|
|
FileMissing bool
|
|
FileDuplicate bool
|
|
FileName string `gorm:"type:varchar(512);index"` // max 3072 bytes / 4 bytes for utf8mb4 = 768 chars
|
|
FileType string `gorm:"type:varchar(32)"`
|
|
FileMime string `gorm:"type:varchar(64)"`
|
|
FileWidth int
|
|
FileHeight int
|
|
FileOrientation int
|
|
FileAspectRatio float64
|
|
FileMainColor string
|
|
FileColors string
|
|
FileLuminance string
|
|
FileSaturation uint
|
|
FileHash string `gorm:"type:varchar(128);unique_index"`
|
|
FileNotes string `gorm:"type:text"`
|
|
}
|