We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 8eaa0a6 commit b1347b8Copy full SHA for b1347b8
models/migrations/v143.go
@@ -20,7 +20,7 @@ func recalculateStars(x *xorm.Engine) (err error) {
20
21
for start := 0; ; start += batchSize {
22
userIDs := make([]int64, 0, batchSize)
23
- if err = sess.Table("user").Limit(batchSize, start).Where("type = ?", 0).Cols("id").Find(&userIDs); err != nil {
+ if err = sess.Table("`user`").Limit(batchSize, start).Where("type = ?", 0).Cols("id").Find(&userIDs); err != nil {
24
return err
25
}
26
if len(userIDs) == 0 {
0 commit comments