12 lines
219 B
Go
12 lines
219 B
Go
package seed
|
|
|
|
import (
|
|
"wagfarm-api/asset/base"
|
|
)
|
|
|
|
type Seed struct {
|
|
base.BoughtResource
|
|
SeedTypeID uint `gorm:"not null"`
|
|
SeedType SeedType `gorm:"not null; constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
|
|
}
|