Files
wagfarm/wagfarm-api/log/harvest/model.go
2025-04-15 22:36:22 +02:00

10 lines
256 B
Go

package harvest
import base "wagfarm-api/log/seeding"
type HarvestLog struct {
base.FieldWorkLog
Product asset.Product `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;not null"`
Amount float64 `gorm:"not null"` // in units of the product
}