photoprism/internal/entity/share.go
Michael Mayer 366c70d992 Optimize performance and data structures
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2019-12-27 05:18:52 +01:00

35 lines
741 B
Go

package entity
import (
"time"
"github.com/jinzhu/gorm"
)
// Shared photos and/or albums
type Share struct {
UUID string `gorm:"type:varbinary(36);primary_key;auto_increment:false"`
ShareUUID string `gorm:"type:varbinary(36);index;"`
ShareViews uint
ShareUrl string `gorm:"type:varchar(64);"`
SharePassword string `gorm:"type:varbinary(200);"`
ShareExpires time.Time
Photo *Photo
Album *Album
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt *time.Time `sql:"index"`
}
func (Share) TableName() string {
return "shares"
}
func (s *Share) BeforeCreate(scope *gorm.Scope) error {
if err := scope.SetColumn("ShareUUID", ID('s')); err != nil {
return err
}
return nil
}