mirror of
https://github.com/go-gitea/gitea
synced 2024-11-17 15:31:06 +01:00
Bug fix
This commit is contained in:
parent
269281ab76
commit
8b6766ecbe
1 changed files with 2 additions and 2 deletions
|
@ -725,8 +725,8 @@ func GetCollaborators(repoName string) ([]string, error) {
|
|||
// Watch is connection request for receiving repository notifycation.
|
||||
type Watch struct {
|
||||
Id int64
|
||||
Uid int64 `xorm:"UNIQUE(s)"`
|
||||
RepoId int64 `xorm:"UNIQUE(s)"`
|
||||
Uid int64 `xorm:"UNIQUE(watch)"`
|
||||
RepoId int64 `xorm:"UNIQUE(watch)"`
|
||||
}
|
||||
|
||||
// Watch or unwatch repository.
|
||||
|
|
Loading…
Reference in a new issue