Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b1347b8

Browse files
committedJun 19, 2020
fix ci
1 parent 8eaa0a6 commit b1347b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎models/migrations/v143.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func recalculateStars(x *xorm.Engine) (err error) {
2020

2121
for start := 0; ; start += batchSize {
2222
userIDs := make([]int64, 0, batchSize)
23-
if err = sess.Table("user").Limit(batchSize, start).Where("type = ?", 0).Cols("id").Find(&userIDs); err != nil {
23+
if err = sess.Table("`user`").Limit(batchSize, start).Where("type = ?", 0).Cols("id").Find(&userIDs); err != nil {
2424
return err
2525
}
2626
if len(userIDs) == 0 {

0 commit comments

Comments
 (0)
Please sign in to comment.