diff options
author | Unknwon <u@gogs.io> | 2015-09-10 11:40:34 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-09-10 11:40:34 -0400 |
commit | 52ec80fa18bf991c6356b7aa972a1d3983aa20c3 (patch) | |
tree | 878773705e8d959598be88354317d1bbea80e0a8 /models/issue.go | |
parent | c8d92fad305f78f0207203b3f1ea955e0ef0309d (diff) | |
download | gitea-52ec80fa18bf991c6356b7aa972a1d3983aa20c3.tar.gz gitea-52ec80fa18bf991c6356b7aa972a1d3983aa20c3.zip |
finish all new user settings UI
Diffstat (limited to 'models/issue.go')
-rw-r--r-- | models/issue.go | 2 |
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 |