summaryrefslogtreecommitdiffstats
path: root/models/issue.go
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-09-10 11:40:34 -0400
committerUnknwon <u@gogs.io>2015-09-10 11:40:34 -0400
commit52ec80fa18bf991c6356b7aa972a1d3983aa20c3 (patch)
tree878773705e8d959598be88354317d1bbea80e0a8 /models/issue.go
parentc8d92fad305f78f0207203b3f1ea955e0ef0309d (diff)
downloadgitea-52ec80fa18bf991c6356b7aa972a1d3983aa20c3.tar.gz
gitea-52ec80fa18bf991c6356b7aa972a1d3983aa20c3.zip
finish all new user settings UI
Diffstat (limited to 'models/issue.go')
-rw-r--r--models/issue.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/issue.go b/models/issue.go
index 7ba5cd9c9a..dffd5a8aaa 100644
--- a/models/issue.go
+++ b/models/issue.go
@@ -546,7 +546,7 @@ func GetIssueCountByPoster(uid, rid int64, isClosed bool) int64 {
// IssueUser represents an issue-user relation.
type IssueUser struct {
ID int64 `xorm:"pk autoincr"`
- UID int64 `xorm:"uid INDEX"` // User ID.
+ UID int64 `xorm:"INDEX"` // User ID.
IssueID int64
RepoID int64 `xorm:"INDEX"`
MilestoneID int64