···3434type GormDBJob struct {
3535 gorm.Model
3636 Repo string `gorm:"unique;index"`
3737- State string `gorm:"index"`
3737+ State string `gorm:"index;index:failed_job_idx,where:state like 'failed%'"`
3838 Rev string
3939 RetryCount int
4040- RetryAfter *time.Time
4040+ RetryAfter *time.Time `gorm:"index"`
4141}
42424343// Gormstore is a gorm-backed implementation of the Backfill Store interface