| 213 | } |
| 214 | |
| 215 | type Product2 struct { |
| 216 | gorm.Model |
| 217 | Name string |
| 218 | Code string |
| 219 | Price int64 |
| 220 | Owner string |
| 221 | } |
| 222 | |
| 223 | func (s Product2) BeforeCreate(tx *gorm.DB) (err error) { |
| 224 | if !strings.HasSuffix(s.Name, "_clone") { |
nothing calls this directly
no outgoing calls
no test coverage detected