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/repo.go | |
parent | c8d92fad305f78f0207203b3f1ea955e0ef0309d (diff) | |
download | gitea-52ec80fa18bf991c6356b7aa972a1d3983aa20c3.tar.gz gitea-52ec80fa18bf991c6356b7aa972a1d3983aa20c3.zip |
finish all new user settings UI
Diffstat (limited to 'models/repo.go')
-rw-r--r-- | models/repo.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/repo.go b/models/repo.go index 33451ecc2e..8b80533813 100644 --- a/models/repo.go +++ b/models/repo.go @@ -1658,7 +1658,7 @@ func NotifyWatchers(act *Action) error { type Star struct { ID int64 `xorm:"pk autoincr"` - UID int64 `xorm:"uid UNIQUE(s)"` + UID int64 `xorm:"UNIQUE(s)"` RepoID int64 `xorm:"UNIQUE(s)"` } |