()
| 133 | VotesCount int `gorm:"not null;default:0"` |
| 134 | Options []StatusPollOption `gorm:"constraint:OnDelete:CASCADE;"` |
| 135 | } |
| 136 | |
| 137 | func (st *StatusPoll) AfterCreate(tx *gorm.DB) error { |
| 138 | return forEach(tx, st.updateVotesCount) |
| 139 | } |
| 140 |
nothing calls this directly
no outgoing calls
no test coverage detected