10 lines
244 B
Go
10 lines
244 B
Go
package pesticide
|
|
|
|
import "wagfarm-api/asset/base"
|
|
|
|
type Pesticide struct {
|
|
base.BoughtResource
|
|
PesticideTypeID uint `gorm:"not null"`
|
|
PesticideType PesticideType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
|
|
}
|