Browse Source

Bug fix

pull/168/head
Unknown 11 years ago
parent
commit
8b6766ecbe
  1. 4
      models/repo.go

4
models/repo.go

@ -725,8 +725,8 @@ func GetCollaborators(repoName string) ([]string, error) {
// Watch is connection request for receiving repository notifycation. // Watch is connection request for receiving repository notifycation.
type Watch struct { type Watch struct {
Id int64 Id int64
Uid int64 `xorm:"UNIQUE(s)"` Uid int64 `xorm:"UNIQUE(watch)"`
RepoId int64 `xorm:"UNIQUE(s)"` RepoId int64 `xorm:"UNIQUE(watch)"`
} }
// Watch or unwatch repository. // Watch or unwatch repository.

Loading…
Cancel
Save