()
| 129 | type StatusPoll struct { |
| 130 | StatusID snowflake.ID `gorm:"primarykey;autoIncrement:false"` |
| 131 | ExpiresAt time.Time |
| 132 | Multiple bool |
| 133 | VotesCount int `gorm:"not null;default:0"` |
| 134 | Options []StatusPollOption `gorm:"constraint:OnDelete:CASCADE;"` |
| 135 | } |
| 136 |