photoprism/internal/entity/event.go

34 lines
816 B
Go
Raw Normal View History

package entity
2019-06-17 07:19:44 +02:00
import (
"time"
"github.com/jinzhu/gorm"
)
// Events
type Event struct {
EventUUID string `gorm:"type:varbinary(36);unique_index;"`
EventSlug string `gorm:"type:varbinary(128);unique_index;"`
2019-06-17 07:19:44 +02:00
EventName string
EventType string
EventDescription string `gorm:"type:text;"`
EventNotes string `gorm:"type:text;"`
EventBegin time.Time `gorm:"type:datetime;"`
EventEnd time.Time `gorm:"type:datetime;"`
2019-06-17 07:19:44 +02:00
EventLat float64
EventLng float64
2019-06-17 07:19:44 +02:00
EventDist float64
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt *time.Time `sql:"index"`
}
func (Event) TableName() string {
return "events"
}
func (e *Event) BeforeCreate(scope *gorm.Scope) error {
return scope.SetColumn("EventUUID", ID('e'))
2019-06-17 07:19:44 +02:00
}