Browse Source

Merge branch 'master' of github.com:gogits/gogs

pull/60/head
Lunny Xiao 11 years ago
parent
commit
e0d64d3168
  1. 4
      models/publickey.go

4
models/publickey.go

@ -77,8 +77,8 @@ func init() {
// PublicKey represents a SSH key of user.
type PublicKey struct {
Id int64
OwnerId int64 `xorm:"index"`
Name string `xorm:"unique not null"`
OwnerId int64 `xorm:"unique(s) index not null"`
Name string `xorm:"unique(s) not null"`
Fingerprint string
Content string `xorm:"TEXT not null"`
Created time.Time `xorm:"created"`

Loading…
Cancel
Save