aboutsummaryrefslogtreecommitdiffstats
path: root/models/issue_user.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2017-09-25 12:59:27 +0800
committerGitHub <noreply@github.com>2017-09-25 12:59:27 +0800
commitdd55534b82ca9527b68fddf0f63ebb13c105c466 (patch)
tree5e1398ac3d07da8b7e4cb4fdd52695cea19b62b7 /models/issue_user.go
parent6b6f16cfae5636deb88003fc5b0290450afb4137 (diff)
downloadgitea-dd55534b82ca9527b68fddf0f63ebb13c105c466.tar.gz
gitea-dd55534b82ca9527b68fddf0f63ebb13c105c466.zip
Reduce usage of allcols on update (#2596)
* reduce usage of allcols on update * fix bug and tests
Diffstat (limited to 'models/issue_user.go')
-rw-r--r--models/issue_user.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/issue_user.go b/models/issue_user.go
index 11d47dd0a6..e0110e6dc5 100644
--- a/models/issue_user.go
+++ b/models/issue_user.go
@@ -101,7 +101,7 @@ func UpdateIssueUsersByMentions(e Engine, issueID int64, uids []int64) error {
iu.IsMentioned = true
if has {
- _, err = e.Id(iu.ID).AllCols().Update(iu)
+ _, err = e.Id(iu.ID).Cols("is_mentioned").Update(iu)
} else {
_, err = e.Insert(iu)
}