0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-07-05 18:58:41 +02:00

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

This commit is contained in:
Lunny Xiao 2014-04-04 17:27:02 +08:00
commit e0d64d3168

View file

@ -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"`